/**
 * @author ABC
 */
$(document).ready(function(){
	$("#search").focus(function() {
		if ($(this).val() == "Pesquisar" | $(this).val() == "Search") $(this).val("")
	});
});
