window.onError = 0;
lastImage = -1;
if (document.images) {
		home = new Image();
		home.src = "/images/tab-home.gif";
		homeb = new Image();
		homeb.src = "/images/tab-mo-home.gif";

		about = new Image();
		about.src = "/images/tab-about.gif";
		aboutb = new Image();
		aboutb.src = "/images/tab-mo-about.gif";

		flour = new Image();
		flour.src = "/images/tab-flour.gif";
		flourb = new Image();
		flourb.src = "/images/tab-mo-flour.gif";

		pancake = new Image();
		pancake.src = "/images/tab-pancake.gif";
		pancakeb = new Image();
		pancakeb.src = "/images/tab-mo-pancake.gif";

		recipes = new Image();
		recipes.src = "/images/tab-recipes.gif";
		recipesb = new Image();
		recipesb.src = "/images/tab-mo-recipes.gif";

		contact = new Image();
		contact.src = "/images/tab-contact.gif";
		contactb = new Image();
		contactb.src = "/images/tab-mo-contact.gif";
}


//Use for HTML 4.01
function imgswitch(imgDocID,imgObjName) {
 if (document.images) {
  document.images[imgDocID].src = eval(imgObjName + ".src")
 }
}

// This goes in "a" tag
// onMouseOver="imgswitch('home', 'homeb')" onMouseOut="imgswitch('home', 'home')"