if (document.images) {

	home			= new Image();
	home.src		= "./img/buttons/home.gif";
	home_om			= new Image();
	home_om.src		= "./img/buttons/home_om.gif";

	aboutus			= new Image();
	aboutus.src		= "./img/buttons/aboutus.gif";
	aboutus_om		= new Image();
	aboutus_om.src	= "./img/buttons/aboutus_om.gif";

	giftshop		= new Image();
	giftshop.src	= "./img/buttons/giftshop.gif";
	giftshop_om		= new Image();
	giftshop_om.src	= "./img/buttons/giftshop_om.gif";

	contactpage			= new Image();
	contactpage.src		= "./img/buttons/contactpage.gif";
	contactpage_om		= new Image();
	contactpage_om.src	= "./img/buttons/contactpage_om.gif";

	favoritelinks			= new Image();
	favoritelinks.src		= "./img/buttons/favoritelinks.gif";
	favoritelinks_om		= new Image();
	favoritelinks_om.src	= "./img/buttons/favoritelinks_om.gif";

	payment			= new Image();
	payment.src		= "./img/buttons/payment.gif";
	payment_om		= new Image();
	payment_om.src	= "./img/buttons/payment_om.gif";

    homebuttonup       = new Image();
    homebuttonup.src   = "./img/buttons/homebutton.gif" ;
    homebuttondown     = new Image() ;
    homebuttondown.src = "./img/buttons/homebuttondown_om.gif" ;
}
function swap(button,buttonname)
{
    if (document.images) {
      button.src = eval(buttonname + "_om.src" );
    }
}
function swapback(button,buttonname)
{
    if (document.images) {
      button.src = eval(buttonname + ".src");
    }
}
