	
	if(document.images) 
	{ 
		oldname = new Array;
		oldsrc = new Array;
		oldname[0] = "a0";
		oldindex = 0;
		oldsrc[0] = "/images/inside_images/hdr01.gif";
	
		button = new Array;
		button[0] = new Array(9);
		
		button[0][0] = new Image();
		button[0][0].src = "/images/inside_images/hdr01.gif";
		
		/* TOP ROLLOVER NAVIGATION  */
		button[0][1] = new Image();
		button[0][1].src = "/images/inside_images/g_n_home_o.gif";
		button[0][2] = new Image();
		button[0][2].src = "/images/inside_images/g_n_industry_links_o.gif";
		button[0][3] = new Image();
		button[0][3].src = "/images/inside_images/g_n_college_contacts_o.gif";
	}
	
	function on(index) 
	{
		if(document.images)
		{
			off();
			oldname[0]='a' + index;
			oldsrc[0]=document[oldname[0]].src;
			document[oldname[0]].src=button[0][index].src;  
		}
	}
	
	
	function off() 
	{
	  if(document.images)
	  {
		document[oldname[0]].src = oldsrc[0];  
	  }
	}
	
	function disclaimerViewed(strViewed)
	{
		window.location.href="/forumlaunch.asp";
		return;
	}
