var ignore = '';

if(document.images) {
	pics = new Array(); 

	// All Hat Products Tab
	pics[1] = new Image();
	pics[1].src = "images/tabs/all-hat-products-off.jpg"; 
	pics[2] = new Image();
	pics[2].src = "images/tabs/all-hat-products-roll.jpg"; 
	pics[3] = new Image();
	pics[3].src = "images/tabs/all-hat-products-on.jpg";
	
	// Baseball Caps Tab
	pics[4] = new Image();
	pics[4].src = "images/tabs/baseball-cap-off.jpg";
	pics[5] = new Image();
	pics[5].src = "images/tabs/baseball-cap-roll.jpg";
	pics[6] = new Image();
	pics[6].src = "images/tabs/baseball-cap-on.jpg";
	
	// Visors Tab
	pics[7] = new Image();
	pics[7].src = "images/tabs/visors-off.jpg";
	pics[8] = new Image();
	pics[8].src = "images/tabs/visors-roll.jpg";
	pics[9] = new Image();
	pics[9].src = "images/tabs/visors-on.jpg";
	
	// Bucket Hats Tab
	pics[10] = new Image();
	pics[10].src = "images/tabs/bucket-hats-off.jpg";
	pics[11] = new Image();
	pics[11].src = "images/tabs/bucket-hats-roll.jpg";
	pics[12] = new Image();
	pics[12].src = "images/tabs/bucket-hats-on.jpg";
	
	// Straw Hats Tab
	pics[13] = new Image();
	pics[13].src = "images/tabs/straw-hats-off.jpg";
	pics[14] = new Image();
	pics[14].src = "images/tabs/straw-hats-roll.jpg";
	pics[15] = new Image();
	pics[15].src = "images/tabs/straw-hats-on.jpg";
	
	// Beanies Hats Tab
	pics[16] = new Image();
	pics[16].src = "images/tabs/beanies-off.jpg";
	pics[17] = new Image();
	pics[17].src = "images/tabs/beanies-roll.jpg";
	pics[18] = new Image();
	pics[18].src = "images/tabs/beanies-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;
		}
	}
}
