$(document).ready(function () {
	speed = 200;
    $('#horarios, #horariosNatal').hover(
		function() {
			if($(this).children('div.cont').css('display') == 'none') {
				$(this).children('div.cont').slideDown(speed);
			}
    	},
		function() {
			if($(this).children('div.cont').css('display') == 'block') {
	        	$(this).children('div.cont').slideUp(speed);
			}
		}
	);
});

$.fn.clearForm = function() {
    return this.each(function () {
        var type = this.type, tag = this.tagName.toLowerCase();
        if (tag == 'form')
            return $(':input',this).clearForm();
        if (type == 'text' || type == 'password' || tag == 'textarea')
            this.value = '';
        else if (type == 'checkbox' || type == 'radio')
            this.checked = false;
        else if (tag == 'select')
            this.selectedIndex = -1;
    });
};
