
	$(document).ready(function(){
		
		//Contamos el número de LI y DT's del menú lateral
		var num_dt = $("#menuleft dt").length;
		var num_li = $("#columna01 li").length;
		
		
		//Si sobrepasa el tam max, metemos el menú acordeon
		if((num_li > 8)||(num_dt > 6)){
		
				if(num_element_visible.length > 0){				
					$("dt a").css('cursor', 'pointer');			
					$("dd:nth("+num_element_visible+")").show();
					
				}	
				
				$("dt a").click(function(){
					$("dd:visible").slideUp("slow");
					$(this).parent().next().slideDown("slow");
					return false;
				});
			
			
			
		}else{
			$("dd").show();
		}
	});

//Remarca una seccion del menú lateral 
function RemarcaSeccion(id){
		if(id.length >0)
			$("#"+id).addClass("btactivo");	
		
}
	
