/*
if (document.images) 
{
   starches_on = new Image ();      //1. Starches
   starches_on.src = "/akfp/assets/images/l-starch-on.gif";
   starches_off = new Image ();
   starches_off.src ="/akfp/assets/images/l-starch.gif";
	
   baking_on = new Image ();     //2. Baking Ingredients
   baking_on.src = "/akfp/assets/images/l-baking-on.gif";
   baking_off = new Image ();
   baking_off.src ="/akfp/assets/images/l-baking.gif";
	
   spices_on = new Image ();     //3. Spices
	spices_on.src = "/akfp/assets/images/l-spices-on.gif";
	spices_off = new Image ();
   spices_off.src ="/akfp/assets/images/l-spices.gif";

	login_on = new Image ();      //4. Login
   login_on.src = "/akfp/assets/images/l-login-on.gif";
   login_off = new Image ();
   login_off.src ="/akfp/assets/images/l-login.gif";
	
   contact_on = new Image ();     //5. Contact Us
   contact_on.src = "/akfp/assets/images/l-contact-on.gif";
   contact_off = new Image ();
   contact_off.src ="/akfp/assets/images/l-contact.gif";
	
   about_on = new Image ();     //6. About Us
	about_on.src = "/akfp/assets/images/l-about-on.gif";
	about_off = new Image ();
   about_off.src ="/akfp/assets/images/l-about.gif";

	logout_on = new Image ();      //7. Logout
   logout_on.src = "/akfp/assets/images/l-logout-on.gif";
   logout_off = new Image ();
   logout_off.src ="/akfp/assets/images/l-logout.gif";
	
   myaccount_on = new Image ();     //8. My Account
   myaccount_on.src = "/akfp/assets/images/l-myaccount-on.gif";
   myaccount_off = new Image ();
   myaccount_off.src ="/akfp/assets/images/l-myaccount.gif";



   hotDeals_on = new Image ();     //8. My Account
   hotDeals_on.src = "/akfp/assets/images/l-hotDeals-on.gif";
   hotDeals_off = new Image ();
   hotDeals_off.src ="/akfp/assets/images/l-hotDeals.gif";
   
   chinese_on = new Image ();     //8. My Account
   chinese_on.src = "/akfp/assets/images/l-chinese-on.gif";
   chinese_off = new Image ();
   chinese_off.src ="/akfp/assets/images/l-chinese.gif";
   
   others_on = new Image ();     //8. My Account
   others_on.src = "/akfp/assets/images/l-others-on.gif";
   others_off = new Image ();
   others_off.src ="/akfp/assets/images/l-others.gif";
		
}

function imgOn(imgName){
	if (document.images) {
		document[imgName].src = eval(imgName + "_on.src");
	}
}

function imgOff(imgName) {
	if (document.images) {
		document[imgName].src = eval(imgName + "_off.src");
	}
}
*/
