$(document).ready(function(){
    var base_host = document.location.toString();
	var base_host2 =base_host.split("/");
	
	for (var i=0; i<base_host2.length; i++) {
			if(base_host2[i].match("freedom-univ")){
				highlight_active_links(base_host2[i+1]) ;
				 //alert( base_host2[i+1] );
				}
        }
});
  	
 
function highlight_active_links(active_url) {
	
    $("#mainMenu ul a").each(function(){
	    var current_href = $(this).attr("href");
		var current_href2=current_href.replace("..","");
		var current_href3 =current_href2.replace("/","");
	    
		if (active_url == current_href3) {
            $(this).addClass("active");
			//alert(active_url);
		    //alert(current_href3);
        }
    });
}
