var ignore = '';

if(document.images) {
	pics = new Array(); 

	// All Poly Bags Tab
	pics[1] = new Image();
	pics[1].src = "images/tabs/all-poly-off.jpg"; 
	pics[2] = new Image();
	pics[2].src = "images/tabs/all-poly-roll.jpg"; 
	pics[3] = new Image();
	pics[3].src = "images/tabs/all-poly-on.jpg";
	
	// Bags on a Roll Tab
	pics[4] = new Image();
	pics[4].src = "images/tabs/roll-bags-off.jpg";
	pics[5] = new Image();
	pics[5].src = "images/tabs/roll-bags-roll.jpg";
	pics[6] = new Image();
	pics[6].src = "images/tabs/roll-bags-on.jpg";
	
	// Small Quantity Tab
	pics[7] = new Image();
	pics[7].src = "images/tabs/short-run-off.jpg";
	pics[8] = new Image();
	pics[8].src = "images/tabs/short-run-roll.jpg";
	pics[9] = new Image();
	pics[9].src = "images/tabs/short-run-on.jpg";
	
	// Large Quantity Tab
	pics[10] = new Image();
	pics[10].src = "images/tabs/standard-run-off.jpg";
	pics[11] = new Image();
	pics[11].src = "images/tabs/standard-run-roll.jpg";
	pics[12] = new Image();
	pics[12].src = "images/tabs/standard-run-on.jpg";
	
	// High Density Tab
	pics[13] = new Image();
	pics[13].src = "images/tabs/high-density-off.jpg";
	pics[14] = new Image();
	pics[14].src = "images/tabs/high-density-roll.jpg";
	pics[15] = new Image();
	pics[15].src = "images/tabs/high-density-on.jpg";
	
	// Low Density Tab
	pics[16] = new Image();
	pics[16].src = "images/tabs/low-density-off.jpg";
	pics[17] = new Image();
	pics[17].src = "images/tabs/low-density-roll.jpg";
	pics[18] = new Image();
	pics[18].src = "images/tabs/low-density-on.jpg";
	

}

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;
		}
	}
}
