$(document).ready(function(){
	
	// search default text
	def_txt_search = 'escriba el texto a buscar...';


	// Asigna a los campos del formulario sus funciones
	// campo nombre
	$("#txt_search").focus(function(){
		if ( $("#txt_search").attr("value") == def_txt_search ) {
			$("#txt_search").attr("value","");
		}
	});
	$("#txt_search").blur(function(){
		if ( $("#txt_search").attr("value") == null ) {
			$("#txt_search").attr("value", def_txt_search);
		}
	});
	
	// asigna el hover a los LI de los botones
    $('.botones li').hover(function() {
		$(this).addClass('hover');
	}, function() {
		$(this).removeClass('hover');
	});
	
	// deshabilita los links en los a.inactive
    $("a.inactive").click( function() { return false; } );

});
