
	window.addEvent("domready", function() {
		
		selectedMenu();
		fadeCursos();
		/*
		$("noticias").set("tween", {
			mode:		'horizontal',
			transition: Fx.Transitions.Pow.easeOut,
			overflow:	'visible',
			duration:	1000
		});
		
		$("noticias").tween("width", $("noticias").getSize().x, 0);
		
		$("linkNoticias").addEvent("click", function(event) {
			event.preventDefault();
			targetWidth = Math.abs($("noticias").getSize().x - 203)
			$("noticias").tween("width", $("noticias").getSize().x, targetWidth);
		});
		*/
		
		$$("canvas").setStyle("background-color", "none");
		
	});
	
	function selectedMenu()
	{
		
		$$("#nav li a, #footer #viento").each(function(a) {
			
			idDelLink = a.id;
			
			elBodyTieneLaClase = $(document.body).hasClass(idDelLink);
			
			if(elBodyTieneLaClase)
				a.addClass("selected");
			
		});
		
	}	
	
	function fadeCursos()
	{
		$$("#listaCursos li").fade("hide");
		$$("#listaCursos li:first-child").fade("in");
		
		$$("#infoCursos h2").addEvent("click", function() {
			
			var clase = this.get("id");
			$$("#listaCursos li").fade("out");
			$$("#listaCursos li." + clase).fade("in");
			
		});
		
	}
