// preload images:
if (document.images) 
{
	deck_tab_off = new Image(85,38); deck_tab_off.src = "tab_decks_black.gif";
	deck_tab_on = new Image(85,38); deck_tab_on.src = "tab_decks_red.gif";

	wheel_tab_off = new Image(85,38); wheel_tab_off.src = "tab_wheels_black.gif";
	wheel_tab_on = new Image(85,38); wheel_tab_on.src = "tab_wheels_red.gif";

	bearing_tab_off = new Image(85,38); bearing_tab_off.src = "tab_bearings_black.gif";
	bearing_tab_on = new Image(85,38); bearing_tab_on.src = "tab_bearings_red.gif";

	truck_tab_off = new Image(85,38); truck_tab_off.src = "tab_trucks_black.gif";
	truck_tab_on = new Image(85,38); truck_tab_on.src = "tab_trucks_red.gif";

	pad_tab_off = new Image(85,38); pad_tab_off.src = "tab_pads_black.gif";
	pad_tab_on = new Image(85,38); pad_tab_on.src = "tab_pads_red.gif";

	home_tab_off = new Image(85,38); home_tab_off.src = "tab_home_black.gif";
	home_tab_on = new Image(85,38); home_tab_on.src = "tab_home_red.gif";

	cart_tab_off = new Image(103,30); cart_tab_off.src = "tab_cart_black.gif";
	cart_tab_on = new Image(103,30); cart_tab_on.src = "tab_cart_red.gif";

	checkout_tab_off = new Image(103,36); checkout_tab_off.src = "tab_checkout_black.gif";
	checkout_tab_on = new Image(103,36); checkout_tab_on.src = "tab_checkout_red.gif";

	buyit_off = new Image(87,41); buyit_off.src = "buyit_black.gif";
	buyit_on = new Image(87,41); buyit_on.src = "buyit_red.gif";

	checkout_button_off = new Image(87,41); checkout_button_off.src = "checkout_button_black.gif";
	checkout_button_on = new Image(87,41); checkout_button_on.src = "checkout_button_red.gif";
}

function hiLite(imgName,imgObjName) 
{
	if (document.images) 
	  document.images[imgName].src = eval(imgObjName + ".src");
}
