if (document.images){
var offImgArray= new Array()
var onImgArray= new Array()

offImgArray["socialButton"]=new Image()
offImgArray["socialButton"].src="images/social_off.gif"
onImgArray["socialButton"]=new Image()
onImgArray["socialButton"].src="images/social_over.gif"

offImgArray["enjoyButton"]=new Image()
offImgArray["enjoyButton"].src="images/enjoy_off.gif"
onImgArray["enjoyButton"]=new Image()
onImgArray["enjoyButton"].src="images/enjoy_over.gif"

offImgArray["recipesButton"]=new Image()
offImgArray["recipesButton"].src="images/recipes_off.gif"
onImgArray["recipesButton"]=new Image()
onImgArray["recipesButton"].src="images/recipes_over.gif"

offImgArray["buyButton"]=new Image()
offImgArray["buyButton"].src="images/buy_off.gif"
onImgArray["buyButton"]=new Image()
onImgArray["buyButton"].src="images/buy_over.gif"

offImgArray["buyBiriki"]=new Image()
offImgArray["buyBiriki"].src="images/buyBiriki_off.gif"
onImgArray["buyBiriki"]=new Image()
onImgArray["buyBiriki"].src="images/buyBiriki_on.gif"

offImgArray["buyNescafe"]=new Image()
offImgArray["buyNescafe"].src="images/buyNescafe_off.gif"
onImgArray["buyNescafe"]=new Image()
onImgArray["buyNescafe"].src="images/buyNescafe_on.gif"

offImgArray["testimonialsButton"]=new Image()
offImgArray["testimonialsButton"].src="images/testimonials_off.gif"
onImgArray["testimonialsButton"]=new Image()
onImgArray["testimonialsButton"].src="images/testimonials_over.gif"

offImgArray["wholesaleButton"]=new Image()
offImgArray["wholesaleButton"].src="images/wholesale_off.gif"
onImgArray["wholesaleButton"]=new Image()
onImgArray["wholesaleButton"].src="images/wholesale_over.gif"

offImgArray["contactButton"]=new Image()
offImgArray["contactButton"].src="images/contact_off.gif"
onImgArray["contactButton"]=new Image()
onImgArray["contactButton"].src="images/contact_over.gif"




}


function imageOn (socialButton){
if (document.images){
	document.images[socialButton].src=onImgArray[socialButton].src
	}
}

function imageOff (socialButton){
if (document.images){
	document.images[socialButton].src=offImgArray[socialButton].src
	}
}

function imageOn (enjoyButton){
if (document.images){
	document.images[enjoyButton].src=onImgArray[enjoyButton].src
	}
}

function imageOff (enjoyButton){
if (document.images){
	document.images[enjoyButton].src=offImgArray[enjoyButton].src
	}
}

function imageOn (recipesButton){
if (document.images){
	document.images[recipesButton].src=onImgArray[recipesButton].src
	}
}

function imageOff (recipesButton){
if (document.images){
	document.images[recipesButton].src=offImgArray[recipesButton].src
	}
}

function imageOn (buyButton){
if (document.images){
	document.images[buyButton].src=onImgArray[buyButton].src
	}
}

function imageOn (buyBiriki){
if (document.images){
	document.images[buyBiriki].src=onImgArray[buyBiriki].src
	}
}

function imageOff (buyBiriki){
if (document.images){
	document.images[buyBiriki].src=offImgArray[buyBiriki].src
	}
}


function imageOn (buyNescafe){
if (document.images){
	document.images[buyNescafe].src=onImgArray[buyNescafe].src
	}
}

function imageOff (buyNescafe){
if (document.images){
	document.images[buyNescafe].src=offImgArray[buyNescafe].src
	}
}





function imageOn (testimonialsButton){
if (document.images){
	document.images[testimonialsButton].src=onImgArray[testimonialsButton].src
	}
}

function imageOff (testimonialsButton){
if (document.images){
	document.images[testimonialsButton].src=offImgArray[testimonialsButton].src
	}
}

function imageOn (wholesaleButton){
if (document.images){
	document.images[wholesaleButton].src=onImgArray[wholesaleButton].src
	}
}

function imageOff (wholesaleButton){
if (document.images){
	document.images[wholesaleButton].src=offImgArray[wholesaleButton].src
	}
}

function imageOn (contactButton){
if (document.images){
	document.images[contactButton].src=onImgArray[contactButton].src
	}
}

function imageOff (contactButton){
if (document.images){
	document.images[contactButton].src=offImgArray[contactButton].src
	}
}

