$(document).ready(function() {
			


$("#menue a").each(function(){
        var href = this.getAttribute('href');
        var location = new String( document.location );
		var fileN1 = location.lastIndexOf("/") + 1;
		var fileN2 = location.length;
		location = location.substring(fileN1,fileN2);
		
		if ( location == href) {
            $(this).addClass("active");
        }
    });




});


