var ignore = '';

if(document.images) {
	pics = new Array(); 

	// Plastic Key Holders
	pics[1] = new Image();
	pics[1].src = "images/tabs/tab-plastic-off.gif"; 
	pics[2] = new Image();
	pics[2].src = "images/tabs/tab-plastic-roll.gif"; 
	pics[3] = new Image();
	pics[3].src = "images/tabs/tab-plastic-on.gif";
	
	// Metal Key Holders
	pics[4] = new Image();
	pics[4].src = "images/tabs/tab-metal-off.gif";
	pics[5] = new Image();
	pics[5].src = "images/tabs/tab-metal-roll.gif";
	pics[6] = new Image();
	pics[6].src = "images/tabs/tab-metal-on.gif";
	
	// Light Key Holders
	pics[7] = new Image();
	pics[7].src = "images/tabs/tab-light-off.gif";
	pics[8] = new Image();
	pics[8].src = "images/tabs/tab-light-roll.gif";
	pics[9] = new Image();
	pics[9].src = "images/tabs/tab-light-on.gif";
	
	// All Key Holders
	pics[10] = new Image();
	pics[10].src = "images/tabs/tab-all-keyholders-off.gif";
	pics[11] = new Image();
	pics[11].src = "images/tabs/tab-all-keyholders-roll.gif";
	pics[12] = new Image();
	pics[12].src = "images/tabs/tab-all-keyholders-on.gif";
	
	
	

}

function LoadEverything(sName, sImage) {
	changer(sName, sImage);
	ignore = sName;
}

function changer(ID,to) {
	if(document.images) {
		if(ID != ignore) {
			document.images[ID].src = pics[to].src;
		}
	}
}
