$(document).ready(function(){
	$('#rotativo > div:gt(0)').hide();

	setInterval(function() { 
	  $('#rotativo > div:first')
		.fadeOut(1000)
		.next()
		.fadeIn(1000)
		.end()
		.appendTo('#rotativo');
	},  3000);
	
	$('#menu-principal > li').mouseenter(function() {
		$(this).children('.sub-menu').slideDown('fast');
	});
	
	$('#menu-principal > li').mouseleave(function() {
		$(this).children('.sub-menu').slideUp('fast');
	});
	
});
