/**
 *	@author Daniel Pliscoff <dpliscoff@workspace.cl>
 */

$(document).ready( function(){
	
	/*
	** Formulario de búsqueda
	*/
	
	$('#menu_buscar_a').click(function (evt) {
		evt.preventDefault();
		var searchform = $('#searchform');
		if (searchform.css('display') == 'block') {
			searchform.fadeOut();
		} else {
			searchform.fadeIn();
		}
	});

});
