var offsete1 = 5;
function abreInfo(ope,prime,tipo)
{
	jQuery('#loader').css("display", "block"); 
	jQuery.post("load_info.php", { offset: offsete1, op:ope, cd_tipo:tipo,primeira:prime},
			   function(data){
				 jQuery("#ultimo").before(data);
				  offsete1+=5;
				  if (jQuery("#fimnoticias").attr("value") == 1)
				  {
					  jQuery('#clickMaisNoticias').html("");
				  }
				  jQuery('#loader').css("display", "none");
			   });
}
$(document).ready(function(){
	$('.quadro').hover(function(){$(this).css("background-color","#E4E4E4");},function(){$(this).css("background-color","#ffffff");});
});

