// JavaScript Document

function menuRollOver(object, action)
{
		objectItem = document.getElementById(object);
		
		if (action == "over") { 
			objectItem.style.backgroundImage = "url(images/menuitem-on.jpg)"; 
			objectItem.style.fontWeight = "bold"; 
			objectItem.style.paddingLeft = "12px";
			objectItem.style.width = "173px";
		}
		if (action == "out") { 
			objectItem.style.backgroundImage = "url(images/menuitem-off.jpg)"; 
			objectItem.style.fontWeight = "normal"; 
			objectItem.style.paddingLeft = "7px";
			objectItem.style.width = "178px";
		}		
		
		
}