
		startList = function()
		{
			if (document.all&&document.getElementById)
			{
				navRoot = document.getElementById("nav");
				for (i=0; i<navRoot.childNodes.length; i++)
				{
					node = navRoot.childNodes[i];
					if (node.nodeName=="LI")
					{
						node.onmouseover=function()
						{
							this.className+=" over";
						}
						node.onmouseout=function()
						{
							this.className=this.className.replace(" over", "");
						}
					}
				}
				navsub = document.getElementsByTagName("li");
				for (i=0; i<navsub.length; i++)
				{
					subnode = navsub[i];
					if (subnode.className == "subli")
					{
						subnode.onmouseover=function()
						{
							this.className+=" subover";
						}
						subnode.onmouseout=function()
						{
							this.className=this.className.replace(" subover", "");
						}					
					}
				}
			}
			col_banners = document.getElementById("d_banners_body_bottom");
			col_events = document.getElementById("d_events_body_bottom");
			col_news = document.getElementById("d_news_body_bottom");
			col_b_height = col_banners.clientHeight;
			col_e_height = col_events.clientHeight;
			col_n_height = col_news.clientHeight;
			if ((col_e_height > (col_b_height + 214)) && (col_e_height > col_n_height) )
			{
				col_banners.style.height = col_e_height - 214 - 40 + "px";
				col_news.style.height = col_e_height - 16 + "px";
			}
			else
			{
				if ((col_n_height > (col_b_height + 214)) && (col_n_height > col_e_height) )
				{
					col_banners.style.height = col_n_height - 214 - 40 + "px";
					col_events.style.height = col_n_height - 17 + "px";
				}
				else
				{
					if (((col_b_height + 214) > col_n_height) && ((col_b_height + 214) > col_e_height) )
					{
						col_news.style.height = col_b_height + 214 - 16 + "px";
						col_events.style.height = col_b_height + 214 - 17 + "px";
					}
				}
			}
		}

//*************************  preload inactive menu image

var path = "image/";

 _i1 = new Image(184,24); _i1.src =path + "about_a.gif";
 _i2 = new Image(184,24); _i2.src =path + "news_a.gif";
 _i3 = new Image(184,24); _i3.src =path + "registration_a.gif";
 _i4 = new Image(184,24); _i4.src =path + "files_a.gif";
 _i5 = new Image(184,24); _i5.src =path +  "forum_a.gif";
 _i6 = new Image(184,24); _i6.src =path + "help_a.gif";
 _i7 = new Image(184,24); _i7.src =path + "events_a.gif";
 _i8 = new Image(184,24); _i8.src =path + "store_a.gif";
 _i9 = new Image(184,24); _i9.src =path + "regc4.gif";
 _i10 = new Image(184,24); _i10.src =path + "regc4_a.gif";
 _i11 = new Image(184,24); _i11.src =path + "regc6.gif";
 _i12 = new Image(184,24); _i12.src =path + "regc6_a.gif";
 _i13 = new Image(184,24); _i13.src =path + "forumc4.gif";
 _i14 = new Image(184,24); _i14.src =path + "forumc4_a.gif";
 _i15 = new Image(184,24); _i15.src =path + "forumc6.gif";
 _i16 = new Image(184,24); _i16.src =path + "forumc6_a.gif";
 _i17 = new Image(184,24); _i17.src =path + "storec4.gif";
 _i18 = new Image(184,24); _i18.src =path + "storec4_a.gif";
 _i19 = new Image(184,24); _i19.src =path + "storec6.gif";
 _i20 = new Image(184,24); _i20.src =path + "storec6_a.gif";
 _i21 = new Image(184,24); _i21.src =path + "apl.gif";
 _i22 = new Image(184,24); _i22.src =path + "apl_a.gif";
 _i23 = new Image(184,24); _i23.src =path + "claims.gif";
 _i24 = new Image(184,24); _i24.src =path + "claims_a.gif";
 _i25 = new Image(184,24); _i25.src =path + "faq.gif";
 _i26 = new Image(184,24); _i26.src =path + "faq_a.gif";		
 _i27 = new Image(184,24); _i27.src =path + "rules_a.gif";		
		
		window.onload=startList;