/**************************************************************************
 *  JAVASCRIPT MENU HIGHLIGHTER v.1.0 (051123) 
 * ©2005 Media Division (www.MediaDivision.com) 
 * Written by Marius Smarandoiu & Armand Niculescu
 * You are free to use, modify and distribute this file, but please keep 
 * this header and credits 
 *
 * advanced customization by agvozden (@) gmail.com for bgsvetionik.com
 **************************************************************************/
function extractPageName(hrefString){
	var arr = hrefString.split('/');
	var test = arr[arr.length-1];
	if (!test) test = arr[arr.length-2];
	return test.toLowerCase();
}

function setActiveMenu(arr, crtPage){
	for(var i=0; i < arr.length; i++)
		if(extractPageName(arr[i].href) == crtPage){
			arr[i].className = "current";
			arr[i].parentNode.className = "current";
		}
}

function setPage(elemId){
	if(document.location.href) 
		hrefString = document.location.href;
	else
		hrefString = document.location;
	if (document.getElementById(elemId)!=null) 
		setActiveMenu(document.getElementById(elemId).getElementsByTagName("a"), extractPageName(hrefString));
}
