var ignore = '';

if(document.images) {
	pics = new Array(); 

	// All Products Tab
	pics[1] = new Image();
	pics[1].src = "images/tabs/a_products_off.jpg"; 
	pics[2] = new Image();
	pics[2].src = "images/tabs/a_products_act.jpg"; 
	pics[3] = new Image();
	pics[3].src = "images/tabs/a_products_on.jpg";
	
	// Mesh Bags Tab
	pics[4] = new Image();
	pics[4].src = "images/tabs/g_mesh_bags-off.jpg";
	pics[5] = new Image();
	pics[5].src = "images/tabs/g_mesh_bags-act.jpg";
	pics[6] = new Image();
	pics[6].src = "images/tabs/g_mesh_bags-on.jpg";
	
	// Pink Bags Tab
	pics[7] = new Image();
	pics[7].src = "images/tabs/h_pink_bags_off.jpg";
	pics[8] = new Image();
	pics[8].src = "images/tabs/h_pink_bags_act.jpg";
	pics[9] = new Image();
	pics[9].src = "images/tabs/h_pink_bags_on.jpg";
	
	// Drawstring Bags Tab
	pics[10] = new Image();
	pics[10].src = "images/tabs/f_drawstring_off.jpg";
	pics[11] = new Image();
	pics[11].src = "images/tabs/f_drawstring_act.jpg";
	pics[12] = new Image();
	pics[12].src = "images/tabs/f_drawstring_on.jpg";
	
	// Polypropylene Tab
	pics[13] = new Image();
	pics[13].src = "images/tabs/j_non_woven_off.jpg";
	pics[14] = new Image();
	pics[14].src = "images/tabs/j_non_woven_act.jpg";
	pics[15] = new Image();
	pics[15].src = "images/tabs/j_non_woven_on.jpg";
	
	// Under $2 Tab
	pics[16] = new Image();
	pics[16].src = "images/tabs/b_under2_off.jpg";
	pics[17] = new Image();
	pics[17].src = "images/tabs/b_under2_act.jpg";
	pics[18] = new Image();
	pics[18].src = "images/tabs/b_under2_on.jpg";
	
	// $2 - $4 Tab
	pics[19] = new Image();
	pics[19].src = "images/tabs/c_2-4_off.jpg";
	pics[20] = new Image();
	pics[20].src = "images/tabs/c_2-4_act.jpg";
	pics[21] = new Image();
	pics[21].src = "images/tabs/c_2-4_on.jpg";
	
	// $4 - $6 Tab
	pics[22] = new Image();
	pics[22].src = "images/tabs/d_4-6_off.jpg";
	pics[23] = new Image();
	pics[23].src = "images/tabs/d_4-6_act.jpg";
	pics[24] = new Image();
	pics[24].src = "images/tabs/d_4-6_on.jpg";
	
	// $6 - $8 Tab
	pics[25] = new Image();
	pics[25].src = "images/tabs/e_6_off.jpg";
	pics[26] = new Image();
	pics[26].src = "images/tabs/e_6_act.jpg";
	pics[27] = new Image();
	pics[27].src = "images/tabs/e_6_on.jpg";
	
	// Over $8 Tab
	pics[28] = new Image();
	pics[28].src = "images/tabs/i_8_off.jpg";
	pics[29] = new Image();
	pics[29].src = "images/tabs/i_8_act.jpg";
	pics[30] = new Image();
	pics[30].src = "images/tabs/i_8_on.jpg";
	
	// Cotton Canvas Tab
	pics[31] = new Image();
	pics[31].src = "images/tabs/k_cotton_off.jpg";
	pics[32] = new Image();
	pics[32].src = "images/tabs/k_cotton_act.jpg";
	pics[33] = new Image();
	pics[33].src = "images/tabs/k_cotton_on.jpg";
	
	// Music Tab
	pics[34] = new Image();
	pics[34].src = "images/tabs/l_music_off.jpg";
	pics[35] = new Image();
	pics[35].src = "images/tabs/l_music_act.jpg";
	pics[36] = new Image();
	pics[36].src = "images/tabs/l_music_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;
		}
	}
}
