$(document).ready(function(){
		
		$("#navbar_main li").hover(
			function() { $("ul", this).fadeIn("fast"); }, 
			function() { $("ul", this).fadeOut("fast"); } 
		);
		
		$('#flashimages').innerfade({
			speed: 'slow',
			timeout: 5000,
			type: 'random',
			containerheight: '240px'
		});
		
		$('#newsticker').innerfade({
			speed: 'slow',
			timeout: 10000,
			type: 'sequence',
			containerheight: '160px'
		});
		
});