$(document).ready(function()
{
	/*
	* Menú sobre la cabecera general: Accesos a alumnos
	* include_plantilla/menu_cabecera_nuevo.php
	*/
$("ul#BtServicio li").hover(function() { //Hover over event on list item
	$(this).find("span").slideDown("slow"); //Show the subnav
} , function() { //on hover out...
	$(this).find("span").slideUp("slow"); //Hide the subnav
});

$("ul.botonHome li").click(function() { //Hover over event on list item
	$(this).find("span").slideToggle("slow");
	});
//	$(this).find("span").css({ display: 'none', });	 


/*
$('.acc_container').hide();
$('.acc_trigger:first')  
   .addClass('active')  
   .next()  
   .show(); 

$('.acc_trigger').click(function(){  
 if( $(this).next().is(':hidden') ) {  
	 $('.acc_trigger')  
		 .removeClass('active')  
		 .next()  
		 .slideUp();  
	 $(this).toggleClass('active')  
		 .next()  
		 .slideDown();  
 }  
 return false;  
});

 	* Combos en el home page: Programas presenciales / on-line, información útil
	* include_plantilla/home_auspiciador.php
	*/
	/*$('#combo01').msDropDown({mainCSS:'presenciales'});
	$('#combo02').msDropDown({mainCSS:'online'});
	$('#cInfo').msDropDown({mainCSS:'info'});*/
});
