$(document).ready(function()
{
	
	if($('.campoBusqueda').val() == ""){
		$('.campoBusqueda').val( $('.campoBusqueda').attr('title') );	
	}
	
	$('.campoBusqueda').focus(function(){
	if($(this).attr('estado') == "off"){
		$(this).val('');
		$(this).attr('estado', 'on');
	}
	}).blur(function(){ 
		if( $(this).val() == '' ) $(this).val( $(this).attr('title') ).attr('estado','off');
	});
	
	$('.makeSearch').css('cursor','pointer')
	.click(function(){
		if($('.campoBusqueda').attr('estado') == "off"){
			$('.campoBusqueda').val('');
		}	
		$('#formSearch').submit();
	});
});
