<!--Hide from older browsers
var app;
browserName = navigator.appName; browserVer = parseInt(navigator.appVersion);
if (browserName == "Microsoft Internet Explorer" && browserVer >= 4) versionOK = true;else versionOK = false;
if (browserName == "Netscape" && browserVer >= 3) versionOK = true;

		
		// Localize here...
		img0_txt = "TheCollectibles.com KPMG Promotional Products";
		img1_txt = "Women's Clothing.";
		img2_txt = "Men's Clothing.";
		img3_txt = "Hats and Caps.";
		img4_txt = "Office and Desk.";
		img5_txt = "Duffels and Cases.";
		img6_txt = "Business Travel.";
		img7_txt = "Sports and Recreation.";
		img8_txt = "Promotional Gear.";
		img9_txt = "Corporate Gifts.";
		img10_txt = "Clearance Section.";
		img11_txt = "Customer Service.";
		img12_txt = "Shopping Cart.";
		img13_txt = "Outerwear Items.";
		img14_txt = "Gift Certificates.";
					

		// ...end localize
			
		if (versionOK)
		{
			img1 = new Image();
			img1_active = new Image();
			img1.src = "images/but_wom.gif";
			img1_active.src = "images/but_wom_on.gif";

			img2 = new Image();
			img2_active = new Image();
			img2.src = "images/but_men.gif";
			img2_active.src = "images/but_men_on.gif";

			img3 = new Image();
			img3_active = new Image();
			img3.src = "images/but_hat.gif";
			img3_active.src = "images/but_hat_on.gif";

			img4 = new Image();
			img4_active = new Image();
			img4.src = "images/but_desk.gif";
			img4_active.src = "images/but_desk_on.gif";

			img5 = new Image();
			img5_active = new Image();
			img5.src = "images/but_duff.gif";
			img5_active.src = "images/but_duff_on.gif";

			img6 = new Image();
			img6_active = new Image();
			img6.src = "images/but_trav.gif";
			img6_active.src = "images/but_trav_on.gif";

			img7 = new Image();
			img7_active = new Image();
			img7.src = "images/but_sport.gif";
			img7_active.src = "images/but_sport_on.gif";

			img8 = new Image();
			img8_active = new Image();
			img8.src = "images/but_promo.gif";
			img8_active.src = "images/but_promo_on.gif";

			img9 = new Image();
			img9_active = new Image();
			img9.src = "images/but_gifts.gif";
			img9_active.src = "images/but_gifts_on.gif";

			img10 = new Image();
			img10_active = new Image();
			img10.src = "images/but_clear.gif";
			img10_active.src = "images/but_clear_on.gif";

			img11 = new Image();
			img11_active = new Image();
			img11.src = "images/but_custserv.gif";
			img11_active.src = "images/but_custserv_on.gif";

			img12 = new Image();
			img12_active = new Image();
			img12.src = "images/but_cart.gif";
			img12_active.src = "images/but_cart_on.gif";
			
			img13 = new Image();
			img13_active = new Image();
			img13.src = "images/but_outer.gif";
			img13_active.src = "images/but_outer_on.gif";
			
			img14 = new Image();
			img14_active = new Image();
			img14.src = "images/but_certs.gif";
			img14_active.src = "images/but_certs_on.gif";
			
		}
		
		function helptxt ( name )
		{
			if ( name == "" )
				self.status = "";
			else
				self.status = eval(name + "_txt");
			return true;
		}
	
		function setimg ( name, activate )
		{
			var obj;
			var indx;
			if (versionOK)
			{
				indx = name.indexOf(".");
				if (indx > 0 )
					obj = name.substring(0,indx);
				else
					obj = name;
				if (activate)
				{
					document[name].src = eval(obj + "_active" + ".src");
					return helptxt ( obj );
				}
				else
				{
					document[name].src = eval(obj + ".src");
					return helptxt ('img0');
				}
			}}
			
// End -->
