﻿jQuery.fn.inputHintsSearch=function() {
	
    // show the text
    $(this).each(function(i) {
        $(this).val($(this).attr('title'));
		if ($(this).val() == 'pesquisar')
			$(this).css( {color:'#444', fontStyle:'italic'} );
    });

    // blur & focus
    $(this).focus(function() {
        if ($(this).val() == $(this).attr('title'))
            $(this).val('');
			$(this).css( {color:'#999', fontStyle:'normal'} );
    }).blur(function() {
        if ($(this).val() == '')
            $(this).val($(this).attr('title'));
			$(this).css( {color:'#999', fontStyle:'normal'} )
		if ($(this).val() != '')
			//alert('here');
            $(this).val($(this).attr('title'));
			if ($(this).attr('title') == 'pesquisar')
				$(this).css( {color:'#444', fontStyle:'italic'} );
    });
};
