	browser = new $Browser();
	$(document).ready(function(){
		$("#hlBusca .campo").cleanInput();
		
		
		if(browser.code != 5){
			$(".boxListagem").corner("30px");
		} 
		else{
			if(browser.version <= 7) var x;
			else $(".boxListagem").corner("30px");
		}
		

		
		$(".boxListagem").hover(function(){
			$(this).find(".blTooltip").fadeIn("fast");
		},
		function(){
			$(this).find(".blTooltip").fadeOut("fast");
		});
		

		/* inicio :: MODIFICAÇÃO PARA REDIRECIONAMENTO DA INDEX2.PHP */
		/* obs :: Remover quando o site for ao ar */
		$('a').each(function(){
			if(browser.code == 5 ) return false;
			var link = $(this).attr('href');
			link = link.replace("index.php","index.php");
			$(this).attr('href',link);	
		});
		/* fim :: MODIFICAÇÃO PARA REDIRECIONAMENTO DA INDEX2.PHP */
		
		$('.boxListagem').each(function(){
			var linkIr = $(this).find('.linkir').attr('href');
			$(this).click(function(){
				location.href=linkIr;
			});
		});

		
	});
