$(document).ready(function(){

	// Blur en formularios
	$(".home #buscar").focus(function () {
		if( this.value == this.defaultValue ) { this.value = ""; }
	}).blur(function() {
		if( !this.value.length ) { this.value = this.defaultValue; }
    });

	// Tooltip
	$("#buscar").hover(
		function () { $(".tooltip").fadeIn('fast'); },
		function () { $(".tooltip").fadeOut('fast'); }
	);

});
