$(document).ready(function(){
// cambiamos el estilo de los desplegables cuando hay js					   
$("#menu-00 li ul").addClass("on"); 

// limpiar campos input de los formularios
$('.limpia').focus(function() {
	if( this.value == this.defaultValue ) {
		this.value = "";
	}
}).blur(function() {
	if( !this.value.length ) {
		this.value = this.defaultValue;
	}
});


});