﻿(function($) {
	$.fn.StyleCurrentMenu = function(className, startPage) {
	var aAdress = location.href.split("http://www.halsocoach.nu");
		var sPage = aAdress[aAdress.length - 1];
		
		if (sPage.length == 0) { sPage = startPage }
		$("#" + this.attr("id") + " a").each(function() {
			if ($(this).attr("href") == sPage) {
				return $(this).parent("li").addClass(className);
			}
		});
	}
})(jQuery);

