/**
 * @author Freddybg
 */

function focus_search(){
	$('input.focus[type = "text"]').focus(function(){
		if(this.value == this.defaultValue)
		{
			this.value = '';
		}
		if(this.value != this.defaultValue)
		{
			this.select();
		}
	});
	$('input.focus[type = "text"]').blur(function(){
		if ($.trim(this.value) == '') {
			this.value = (this.defaultValue ? this.defaultValue : '');
		}
	});
}

function menu() {
	$('ul.menu_desplegable ul ').css({display: "none"});
	$('ul.menu_desplegable li').hover( function() {
		$(this).find('ul').css({display: "none"}).slideDown(400).show("slow");
	}), function() {
		$(this).find('ul').slideUp('slow');
	}
}


$(document).ready( function() {
	
	focus_search();	
	menu();
	
});








