// document initialize
$(document).ready(function(){ 
	
  // primary navigation
	$("ul.sf-menu").superfish({
		dropShadows:   false,
		animation: {opacity:'show',height:'show'},
		speed: 'fast'
	}); 

	// search button rollover
	$('#inp-Submit').hover(
		function() {$(this).addClass('inp-Submit-hover');},
		function() {$(this).removeClass('inp-Submit-hover');}
	);
	
	
	// news ticker
// NOTE: Commenting this out for the moment, because we wanted to disable the ticker.  -JMR, 09/28/09
	$("#ticker").jCarouselLite({  
	 vertical: true,  
    visible: 1,  
    auto:4000,  // miliseconds - how long each news line stays up
    speed:1000  // miliseconds - transition speed
  });

  // sponsor logos
	$('#sponsor-logos').innerfade({ 
		animationtype: 'fade', 
		speed: 100,     // miliseconds - transition speed
		timeout: 6000, // miliseconds - how long each logo stays up
		type: 'sequence', 
		containerheight: '50px' 
	}); 
	
});

