$(document).ready(
	function(){
		$('#didYouKnow').innerfade({
			animationtype: 'fade',
			speed: 750,
			timeout: 7000,
			type: 'random',
			containerheight: '300px'
		});
});

/*BEGIN - FOR DROPDOWN MENUS*/
$(document).ready(function(){
	$("navigationList li").hover(
		function(){ $("ul", this).fadeIn("fast"); }, 
		function() { } 
	);
if (document.all) {
		$("#navigationList li").hoverClass ("sfHover");
	}
});


$.fn.hoverClass = function(c) {
	return this.each(function(){
		$(this).hover( 
			function() { $(this).addClass(c);  },
			function() { $(this).removeClass(c); }
		);
	});
};	
/*END - FOR DROPDOWN MENUS*/
