var losjeplassen = function() {
	var
	checkCurrent = function() {
		var that = $(this);
		
		if(typeof topmenupoint == "undefined") {
			topmenupoint = "none-";
		}
		
		that.find("a").each(function() {
			if($(this).attr("href") == window.location.pathname.toString() || $(this).attr("href").indexOf(topmenupoint) != -1) {
				$(this).parent().addClass("menuActive");
			}
		});
	},

	init = function() {
		$("#topMenu li").each(checkCurrent);
	}
	;

	return {
		init: init
	};
}();

$(document).ready(function() {
	losjeplassen.init();
});
