var LeftMenu = {};

LeftMenu.OverFunction = function(oDiv, oBullet, BulletImageName, BulletImagePath){
	
	LeftMenu.PreloadIcon(BulletImageName, BulletImagePath);
	//alert(oDiv.style.backgroundColor); 
	oDiv.style.cursor = 'pointer';
    if(oBullet != null){ 
		//alert(oDiv.style.backgroundColor);
		//alert(oDiv.style.backgroundColor);
		if(oDiv.style.backgroundColor == "#c3dca5" || oDiv.style.backgroundColor == "rgb(143, 182, 105)"){
			oDiv.style.backgroundColor = "#9fc377";
			eval("oBullet.src = "+BulletImageName+".src;");
		}else if(oDiv.style.backgroundColor == "#9fc377" || oDiv.style.backgroundColor == "rgb(169, 201, 108)"){
			
			oDiv.style.backgroundColor = "#c3dca5";
			eval("oBullet.src = "+BulletImageName+".src;");
		}
    }	
}

LeftMenu.PreloadIcon = function(IconName, IconPath){
	ImageObject.Preload(IconName, IconPath);
}