// JavaScript Document


function init() {
	highlightMenuItem('Sidhuvud', "fontWeight", "bold");
	highlightMenuItem('Undermeny', "fontWeight", "bold");
	highlightMenuItem('Undermeny', "backgroundImage", "url(imagetmpl/bullet-dot-grey.gif)");
}



function highlightMenuItem(id, styleSelector, styleType) {
	
	var menu = document.getElementById(id);
	
	if (menu) {
		var element = menu.getElementsByTagName("a");
		
		for (i = 0; i < element.length; i++) {
			
			var url = element[i].href;
			
			if (location.href == url) {
				eval('element[i].style.' + styleSelector  + ' = "' + styleType + '"');
			}
		}
	}
}

