// BANNER
$(document).ready(function(){
  	$('#banner').cycle({ 
		fx: 'fade', 
		speed:  600
	});
});

//MENU
$(document).ready(function(){
						   			
				//	#animation-3 
		$("#internoMenu div").append("<span></span>");
		$("#internoMenu div a").hover(
		function(){

			$(this).next("span").animate({ top: "0px" }, 500 );
		},function(){
			$(this).next("span").animate({ top: "100px" }, 500 );
		});	

	});


