// JavaScript Document
function $(id){return document.getElementById(id)}
window.onload=function(){addEventToLi()}
function addEventToLi()
{
	arrLi=$("newproject").getElementsByTagName("li")
	for(i=0;i<arrLi.length;i++)
	{
		arrLi[i].onmouseover=function(){
			this.style.backgroundColor="#ecd219";
			this.style.backgroundImage="url(images/newprojectlibg1.gif)";
			this.style.backgroundPosition ="center bottom";
			this.style.backgroundRepeat ="no-repeat";
			}
		arrLi[i].onmouseout=function(){
			this.style.backgroundColor="#e8ebf2";
			this.style.backgroundImage="url(images/newprojectlibg.gif)";
			this.style.backgroundPosition ="center bottom";
			this.style.backgroundRepeat ="no-repeat";
			}
	
		arrLi[i].style.backgroundPosition ="center bottom";
		arrLi[i].style.backgroundRepeat ="no-repeat";
	}
}


