﻿
var textoBuscar = null;

$(document).ready
(
	function()
	{
		textoBuscar = $('.buscar input').val();		
		$('.buscar input').focus
		(
			function()
			{
				var texto = $.trim($(this).val());
				if(texto == textoBuscar)   
				{
					$(this).val('');
					$(this).css('font-style', 'normal'); 
					$(this).css('color', '#000'); 
					$(this).parent().parent().css('background', '#fff'); 
				} 
			}
		);
		$('.buscar input').blur
		(
			function()
			{
				var texto = $.trim($(this).val());
				if(texto == '')   
				{
					$(this).val(textoBuscar);
					$(this).css('font-style', 'italic');
					$(this).css('color', '#858682');
					$(this).parent().parent().css('background', '#edf0db'); 
				} 
			}
		);
	}
);
