﻿
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');
				} 
			}
		);
		$('.buscar input').blur
		(
			function()
			{
				var texto = $.trim($(this).val());
				if(texto == '')   
				{
					$(this).val(textoBuscar);
					$(this).css('font-style', 'italic');
				} 
			}
		);
	}
);
