// FUNCIONALIDADE JQUERY
 $(document).ready(function() {
	

		$('input').click(function () {
				
				if($(this).attr('value') == "Buscar..."){
					$(this).attr('value', '');
					$(this).css('color', 'black');
					$(this).css('font-style','normal');
				}
							});
		
		$('input').blur(function (){
								  
					if( $(this).attr('value') == "" ){
						
						$(this).attr('value',  $(this).attr('title'));
						
						
						}			  
							
					if( $(this).attr('value') == "Buscar..." ){
						
						$(this).css('color', '#A9ABAE');
					$(this).css('font-style','italic');
						
						
						}	
								  });
	
 });
