<!--hide from old browsers
/********************************************************************************************************
Preloading images: we create an image object, then we give it a gif or jpeg source file.
This file will be loaded into the cache of the browser, which will enable its instant display when it is requested.
The default directory of the images is "images/". Modify the file path if necessary.
********************************************************************************************************/
if (document.images) {

	var homeoff = new Image();
	homeoff.src = "images/buto_home.gif";
	var homeon = new Image();
	homeon.src =  "images/but_home.gif";
	var premiumoff = new Image();
	premiumoff.src = "images/buto_premium_coffee.gif";
	var premiumon = new Image();
	premiumon.src = "images/but_premium_coffee.gif";
	var selectoff = new Image();
	selectoff.src = "images/buto_select_coffee.gif";
	var selecton = new Image();
	selecton.src = "images/but_select_coffee.gif";
	var methodsoff = new Image();
	methodsoff.src = "images/buto_brewing_methods.gif";
	var methodson = new Image();
	methodson.src = "images/but_brewing_methods.gif";
	var tipsoff = new Image();
	tipsoff.src = "images/buto_brewing_tips.gif";
	var tipson = new Image();
	tipson.src = "images/but_brewing_tips.gif";
	var conservoff = new Image();
	conservoff.src = "images/buto_conservation.gif";
	var conservon = new Image();
	conservon.src = "images/but_conservation.gif";
	var merchandisingoff = new Image();
	merchandisingoff.src = "images/buto_merchandising.gif";
	var merchandisingon = new Image();
	merchandisingon.src = "images/but_merchandising.gif";
	var storeoff = new Image();
	storeoff.src = "images/buto_online_store.gif";
	var storeon = new Image();
	storeon.src = "images/but_online_store.gif";
	var profileoff = new Image();
	profileoff.src = "images/buto_company_profile.gif";
	var profileon = new Image(); 
	profileon.src = "images/but_company_profile.gif";
	var historyoff = new Image();
	historyoff.src = "images/buto_history.gif";
	var historyon = new Image();
	historyon.src = "images/but_history.gif";
	var contactoff = new Image();
	contactoff.src ="images/buto_contact_us.gif";
	var contacton = new Image();
	contacton.src ="images/but_contact_us.gif";

}


/********************************************************************************************************
Rollover functions
********************************************************************************************************/
function getOff(nom)
	{
	if (document.images) {
		document.images[nom].src = eval(nom + 'off').src;
	}
}
function getOn(nom)
	{
	if (document.images) {
		document.images[nom].src = eval(nom + 'on').src;
	}
}
function getDown(nom)
	{
	if (document.images) {
		document.images[nom].src = eval(nom + 'down').src;
	}
}

//-->
