function setSelectedItem(inId){
	var aMenuItem = document.getElementById(inId);
	if(aMenuItem)
	{
	/*.selectedMenu
color: #EB671D;
	background-image:url(../images/doubleLine.jpg);
	background-position: bottom left;
	background-repeat: repeat-x;
	*/
		aMenuItem.style.color='#EB671D';
		aMenuItem.style.backgroundImage="url(images/doubleLine.jpg)";
		aMenuItem.style.backgroundRepeat='repeat-x';
		aMenuItem.style.backgroundPosition='bottom left';
		
	}
}