var x;
x=$(document);
x.ready(inicializarEventos);

function inicializarEventos(){
	$('ul.jd_menu').jdMenu();
    $('#buscador_boton').click(buscar);
}

function onAnimate(show) {
	//$(this).fadeIn('slow').show();
	if (show) {
		$(this)
			.css('visibility', 'hidden').show()
				.css('width', $(this).innerWidth())
			.hide().css('visibility', 'visible')
		.fadeIn('normal');
	} else {
		$(this).fadeOut('fast');
	}
}

function buscar(){
	if ($('#el_buscador').val()!=""){
		var url = "http://"+window.location.host+"/buscar/"+$('#el_buscador').val();
		window.location= "buscar/"+$('#el_buscador').val();
	}
}
