//<![CDATA[	
$(document).ready(function(){
	
	 $('#menu_topo div').hover(function(){
		var indice = $('#menu_topo div').index(this);
		$('#menu_topo div:eq('+indice+') img').fadeIn('normal');
	  }, 
	  function(){
		var indice = $('#menu_topo div').index(this);
		$('#menu_topo div:eq('+indice+') img').fadeOut('normal');
	});
	 
	$('#menu div').hover(function(){
		var indice = $('#menu div').index(this);
		$('#menu div:eq('+indice+') img').fadeIn('normal');
	  }, 
	  function(){
		var indice = $('#menu div').index(this);
		$('#menu div:eq('+indice+') img').fadeOut('normal');
	});
	
	
   $('#banners').cycle({ 
		fx:     'fadeZoom', 
		speed:  'slow', 
		timeout: 10000
	});
	
	$("#news").validate({
 		submitHandler: function(form) {
			$("#news #load_ajax").ajaxStart(function(){
				$(this).show();					
			});
			
			 $.ajax({
				   type: "POST",
				   url: link+"public/ajax/ajax.php",
				   data: $('#news').serialize()+"&funcao=news",
				   success: function(retorno){
					 $("#news #load_ajax").hide();
					 $("#news #retorno").html(retorno);
				   }
			});	
 		}
	});

   
});
	 
	/* $(this).hover(function(){
			$('#bt_home').hide();			 
			$('#bt_home_hover').fadeIn('slow');
		  }, 
		  function(){
			  $('#bt_home').show();
			 $('#bt_home_hover').fadeOut('slow');
		  }
		);*/

//]]>
