// Pre load the images
if  (document.images)
  {
   var couponOff = new Image();
   couponOff.src = "images/coupon1a.jpg";
   var couponRO = new Image();
   couponRO.src = "images/coupon1b.jpg";   
  }   
   
// Setup the functions for the mouse(over/out) events
function off_Image(theImage)
  {
   if (document.images)
     document[theImage].src = eval(theImage + "Off.src");
  }

function ro_Image(theImage)
  {
   if (document.images)
     document[theImage].src = eval(theImage + "RO.src");
  }
  
/*
	 ~~ GH.Productions
	 ~~ © 2006 Greg Hall
	 
	 ~~ Purpose: External JavaScript File for rollover effects_
	             with Preloading Images & document.images object checking. This_
				 file is specific to the coupon image.
	 ~~ File Title: roeffects.js
	 ~~ Last Updated: 07/09/06 
	 ~~ Initial: GH 
*/