function handleError() 
{ 
return true; 
} 

window.onerror = handleError; 

$(document).ready(function(){
	//	BORDAS
	$(".borderA").corner("round 5px");
	$(".borderB").corner("round 10px");
	$(".borderC").corner("round 20px");

	
    $(".inputBusca").focus(function(){
        if ("Buscar produtos..." == $(this).val())
            $(this).val("");
    });

    $(".inputBusca").blur(function(){
        if ("" == $(this).val().trim())
            $(this).val("Buscar produtos...");
    });
});
