startList = function()
				{
					var x = document.getElementById("left_menu");
					var y = document.getElementById("form_fields");
					if (x)
					{
						for (i=0; i < x.childNodes.length; i++)
						{
							node = x.childNodes[i];
							//Checking the ode name is equal to li
							if (node.nodeName=="LI") 
							{
								node.className+=" left_li";
								node.onmouseover=function()
								{
									// changing the class name when mouseover to li
									this.className+=" left_li_hover";
								}
								node.onmouseout=function()
								{
									// changing the class name when mouseout to li
									this.className=this.className.replace(" left_li_hover"," left_li");
								}
							}
						}
					}
					if (y)
					{
						for (i=0; i < y.childNodes.length; i++)
						{
							node = y.childNodes[i];
							if (node.id=="instant_quote") 
							{
								node.className+=" instant_quote";
								node.onmouseover=function()
								{
									this.className+=" quote_hover";
								}
								node.onmouseout=function()
								{
									this.className=this.className.replace(" quote_hover"," instant_quote");
								}
							}
							if (node.id=="reorder") 
							{
								node.className+=" reorder";
								node.onmouseover=function()
								{
									this.className+=" reorder_hover";
								}
								node.onmouseout=function()
								{
									this.className=this.className.replace(" reorder_hover"," reorder");
								}
							}
							if (node.id=="submit") 
							{
								node.className+=" submit";
								node.onmouseover=function()
								{
									this.className+=" submit_hover";
								}
								node.onmouseout=function()
								{
									this.className=this.className.replace(" submit_hover"," submit");
								}
							}							
						}
					}
				}

window.onload=startList;