$(document).ready(function(){
	$('.nav li:has(ul)').hover(function(){
			$(this).find('ul').show();
		}, 
		function(){
			$(this).find('ul').hide();
		}
	);
	$('#rotate') 
	.before('<div id="page">') 
	.cycle({ 
	    fx:'fade', 
	    speed:500, 
	    timeout:4000,
	    pager:'#page',
	    pause:1
	});	
});


