//home page 6 teas
if (document.images)
			{    
		
	whiteon = new Image;
	whiteon.src = "/images/tea-btns/white-on.gif";
	whiteoff = new Image;
	whiteoff.src = "/images/tea-btns/white.gif";
	whitepress = new Image;
	whitepress.src = "/images/tea-btns/white-on.gif";
	
	tropicalroobioson = new Image;
	tropicalroobioson.src = "/images/tea-btns/tropicalroobios-on.gif";
	tropicalroobiosoff = new Image;
	tropicalroobiosoff.src = "/images/tea-btns/tropicalroobios.gif";
	tropicalroobiospress = new Image;
	tropicalroobiospress.src = "/images/tea-btns/tropicalroobios-on.gif";
	
	premierestateassamon = new Image;
	premierestateassamon.src = "/images/tea-btns/premierestateassam-on.gif";
	premierestateassamoff = new Image;
	premierestateassamoff.src = "/images/tea-btns/premierestateassam.gif";
	premierestateassampress = new Image;
	premierestateassampress.src = "/images/tea-btns/premierestateassam-on.gif";
	
	blackcurranthibuscuson = new Image;
	blackcurranthibuscuson.src = "/images/tea-btns/blackcurranthibuscus-on.gif";
	blackcurranthibuscusoff = new Image;
	blackcurranthibuscusoff.src = "/images/tea-btns/blackcurranthibuscus.gif";
	blackcurranthibuscuspress = new Image;
	blackcurranthibuscuspress.src = "/images/tea-btns/blackcurranthibuscus-on.gif";
	
	genmaichaon = new Image;
	genmaichaon.src = "/images/tea-btns/genmaicha-on.gif";
	genmaichaoff = new Image;
	genmaichaoff.src = "/images/tea-btns/genmaicha.gif";
	genmaichapress = new Image;
	genmaichapress.src = "/images/tea-btns/genmaicha-on.gif";
	
	mangogingergreenon = new Image;
	mangogingergreenon.src = "/images/tea-btns/mangogingergreen-on.gif";
	mangogingergreenoff = new Image;
	mangogingergreenoff.src = "/images/tea-btns/mangogingergreen.gif";
	mangogingergreenpress = new Image;
	mangogingergreenpress.src = "/images/tea-btns/mangogingergreen-on.gif";	

	sapharahomeon = new Image;
	sapharahomeon.src = "/images/top-nav/saphara-home-on.jpg";
	sapharahomeoff = new Image;
	sapharahomeoff.src = "/images/top-nav/saphara-home.jpg";
	sapharahomepress = new Image;
	sapharahomepress.src = "/images/top-nav/saphara-home-on.jpg";
	
	extraordinaryingredientson = new Image;
	extraordinaryingredientson.src = "/images/top-nav/extraordinary-ingredients-on.jpg";
	extraordinaryingredientsoff = new Image;
	extraordinaryingredientsoff.src = "/images/top-nav/extraordinary-ingredients.jpg";
	extraordinaryingredientspress = new Image;
	extraordinaryingredientspress.src = "/images/top-nav/extraordinary-ingredients-on.jpg";
	
	ecofriendlypackagingon = new Image;
	ecofriendlypackagingon.src = "/images/top-nav/eco-friendly-packaging-on.jpg";
	ecofriendlypackagingoff = new Image;
	ecofriendlypackagingoff.src = "/images/top-nav/eco-friendly-packaging.jpg";
	ecofriendlypackagingpress = new Image;
	ecofriendlypackagingpress.src = "/images/top-nav/eco-friendly-packaging-on.jpg";
		
	}		
		
var thisPage = "";

function setCurrent(page){

	img_press(page);
	thisPage = page;
	
}

function img_act(imgName)
{
    if (document.images)
    {
        imgOn = eval(imgName + "on.src");
		imgPress = eval(imgName + "press.src");
		imgSrc = document [imgName].src;
		if (imgSrc != imgPress && imgName != thisPage){
			document [imgName].src = imgOn;
		}        
    }
}

function img_inact(imgName)
{
    if (document.images && imgName != thisPage)
    {
        imgOff = eval(imgName + "off.src");
        document [imgName].src = imgOff;
    }
}

function img_press(imgName)
{
    if (document.images && imgName != thisPage)
    {
        imgPress = eval(imgName + "press.src");
        document [imgName].src = imgPress;
    }
}