
	window.addEvent("domready", function() {
		
		$$("#nav a")[1].set("title", "actualidad");
		
		$$("a").each(function(a){
			
			var section = a.get("text").toLowerCase();
			var title = "empty";
			
			if(a.get("title"))
				title = a.get("title").toLowerCase();
			
			var hasText = $(document.body).className.toLowerCase().indexOf(section) != -1;
			var hasTitle = $(document.body).className.toLowerCase().indexOf(title) != -1;
			
			if(hasText || hasTitle)
			{
				a.setStyle("font-weight", "bold");
				a.setStyle("font-size", "1.2em");
				a.setStyle("color", "white");
			}
		});
		
	});