//****************************************************************************
// XLI																		 *
//****************************************************************************
Cufon.set('fontFamily', 'Helvetica_lt').replace('.helvetica');
Cufon.set('fontFamily', 'Helvetica_lt_bold').replace('.helvetica_bold');


// Columnas con igual altura

function equalHeight(group) {
	tallest = 0;
	group.each(function() {
		thisHeight = $(this).height();
		if(thisHeight > tallest) {
			tallest = thisHeight;
		}
	});
	group.height(tallest);
}
$(function()
{
	if($.jcarousel) jQuery('#mycarousel').jcarousel();
});
$(window).load(function()
{
	equalHeight($(".home_descripcion"));
	equalHeight($(".altura2"));
});



this.sitemapstyler = function(){
	var sitemap = document.getElementById("archivo_documental_arbol")
	if(sitemap){
		
		this.listItem = function(li){
			if(li.getElementsByTagName("ul").length > 0){
				var ul = li.getElementsByTagName("ul")[0];
				ul.style.display = "none";
				var span = document.createElement("span");
				span.className = "collapsed";
				span.onclick = function(){
					ul.style.display = (ul.style.display == "none") ? "block" : "none";
					this.className = (ul.style.display == "none") ? "collapsed" : "expanded";
				};
				li.appendChild(span);
			};
		};
		
		var items = sitemap.getElementsByTagName("li");
		for(var i=0;i<items.length;i++){
			listItem(items[i]);
		};
		
	};	
};

window.onload = sitemapstyler;

