$(document).ready(function() {	
	
	/*Thickbox*/
	tb_init('a.thickbox');
	imgLoader = new Image();
	imgLoader.src = tb_pathToImage;
	
	/*tabs*/
	$.tabs("container-1");
	
	/*Menu*/
	$("#nav li").hover(
				function(){ $("ul", this).fadeIn("fast"); }, 
				function() { } 
			);
	  		if (document.all) {$("#nav li").hoverClass ("sfHover");}


	/*Color alterno*/
	$(".Alterno li:even").addClass("bgAlterno");
	$(".AlternoT tr:even").addClass("bgAlterno");

	/*COOKIE*/
	var cookie = $.cookie('styleColegio');
    var title = cookie ? cookie : getPreferredStyleSheet();
    setActiveStyleSheet(title);

	
	

});
		
window.onunload = function(e) {
  $.cookie('styleColegio', getActiveStyleSheet(), {expires: 10});
}

