// JavaScript Document

<!--

if(document.images)
{
	pics = new Array();
	
	pics[1] = new Image();
	pics[1].src = "images/dkg_navigation_links_01.gif"; // Link State
	pics[2] = new Image();
	pics[2].src = "images/dkg_navigation_hover_01.gif"; // Hover State
	
	pics[3] = new Image();
	pics[3].src = "images/dkg_navigation_links_02.gif";
	pics[4] = new Image();
	pics[4].src = "images/dkg_navigation_hover_02.gif";

	pics[5] = new Image();
	pics[5].src = "images/dkg_navigation_links_03.gif";
	pics[6] = new Image();
	pics[6].src = "images/dkg_navigation_hover_03.gif";
	
	pics[7] = new Image();
	pics[7].src = "images/chapterResources-link_05.gif";
	pics[8] = new Image();
	pics[8].src = "images/chapterResources-roll_05.gif";
	
	pics[9] = new Image();
	pics[9].src = "images/events-link_05.gif";
	pics[10] = new Image();
	pics[10].src = "images/events-roll_05.gif";
	
	pics[11] = new Image();
	pics[11].src = "images/dkg_navigation_links_06.gif";
	pics[12] = new Image();
	pics[12].src = "images/dkg_navigation_hover_06.gif";
	
	pics[13] = new Image();
	pics[13].src = "images/dkg_navigation_links_07.gif";
	pics[14] = new Image();
	pics[14].src = "images/dkg_navigation_hover_07.gif";

///////all the b images

	pics[15] = new Image();
	pics[15].src = "images/dkg_navigation_active_01.gif"; // Rollover State

	pics[16] = new Image();
	pics[16].src = "images/dkg_navigation_active_02.gif";

	pics[17] = new Image();
	pics[17].src = "images/dkg_navigation_active_03.gif";

	pics[18] = new Image();
	pics[18].src = "images/chapterResources-active_05.gif";

	pics[19] = new Image();
	pics[19].src = "images/events-active_05.gif";

	pics[20] = new Image();
	pics[20].src = "images/dkg_navigation_active_06.gif";

	pics[21] = new Image();
	pics[21].src = "images/dkg_navigation_active_07.gif";
	
}

function swap(from, to)
{
	
	if(document.images)
	{
		document.images[from].src = pics[to].src;		
	}	
}

-->
