function initializeMenu(){
	$('#nav').spasticNav();
    $("#menu ul li").click(     
       	function(){
    		$('#menu ul li').each(function(index) {
				$(this).attr('id','');	
			});
           	var clicked = $(this); // jQuery wrapper for clicked element
			clicked.attr('id','selected');
			$('#nav').spasticNav();
			$("#menu ul li").each(function(index){
				if(index==5){
					$(this).remove();
				}
			});
      	}
   	);
 };
 
 var current=0;

 var loadInicioPage = function() {
     if (current != 1) {
         $("#content").load("secciones/inicio.html").fadeIn(200);
   	 	current=1;
    }
 };

var loadQuienesSomosPage = function () {
    if (current != 2) {
    	$("#content").load("secciones/quienessomos.html").fadeIn(200);
    	current=2;
    }
};


var loadProyectosPage = function () {
    if (current != 3) {
        $("#content").load("secciones/proyectos.html").fadeIn(200);
        current = 3;
    }
};

var loadContactoPage = function () {
    if (current != 4) {
        $("#content").load("secciones/contacto.html").fadeIn(200);
        current = 4;
    }
};

var loadServiciosPage = function() {
	if (current != 5) {
        $("#content").load("secciones/servicios.html").fadeIn(200);
        current = 5;
    }	
};


