// JavaScript Document which when IE is used, assigns a class name to topnav li elements
//faking hover states for these elements

//---------- top nav drop downs -------------------------------

sc_product_navList = function()
{
	if (document.all&&document.getElementById) //test for IE
	{	
		//store element id "sub_content_holder" into sc_Root
		sc_product_Root = document.getElementById("sub_content_holder");
		
		//get all li elements within sub_content_holder
		sc_product_li_Array = sc_product_Root.getElementsByTagName("li");
		
		//convert class name
		for (f = 0; f < sc_product_li_Array.length; ++f)
		{
			sc_product_li_Array[f].onmouseover=function()
			{			
				this.className+=" over";
			}
		
			sc_product_li_Array[f].onmouseout=function()
			{			
				this.className=this.className.replace(" over", "");
			}
		}
	}
}