//SCRIPTS PARA JUANJO VAZQUEZ

$(document).ready(function(){
	
	//fade cuando carga la pagina
	$(function () {
		var tabContainers = $('#contenedor');
		tabContainers.hide().filter(':first').fadeIn("slow").show();
	});
	
	
	$(document).ready(function(event) {
	  $('ul.main-menu li.eventos').hover(function() {
		$('ul.sub').fadeIn('slow');
	  }, function() {
		$('ul.sub').fadeOut('slow');
	  });
	  $('ul.sub').hover(function() {
		$('this').show('');
	  }, function() {
		$('this').hide('');
	  });
	  
	  
	  
	});
	
});


