/***********************************************
*  horizantol menu highlight
***********************************************/

var menutabs={
	
	init:function(menuId, tabtag){
	var tabItems=document.getElementById(menuId).getElementsByTagName("a")
		for (var i=0; i<tabItems.length; i++){
			if (tabItems[i].getAttribute("rel") == tabtag) {
				tabItems[i].className="current"
			}
		} //END FOR LOOP
	}

}
