$(document).ready(function(){
	$('#rotate').innerfade({ speed: 2000, timeout: 2500, type: 'sequence', containerheight: '350px'
	});
	
	dropDown();
});

function dropDown() {
	$('#nav ul li').hover(
			function() { $('ul', this).css('display', 'block'); },
			function() { $('ul', this).css('display', 'none'); });
}