/**
 * smg_IMGRoll 08APR2003 Version 1.0
 * Telbert Pyke, April 2003
 * Copyright (c) 2002 SyneDyne Media Group, LLC.
 **
 * SyneDyne grants you a royalty free license to use or modify this
 * software provided that this copyright notice appears on all copies.
 * This software is provided "AS IS," without a warranty of any kind.
 */

if(document.images){
  SLHonImages = new Array();
  SLHoffImages = new Array();
    
  	SLHonImages[0] = new Image();
  	SLHoffImages[0] = new Image();	
  	SLHonImages[0].src= "../images/spacer.gif";
  	SLHoffImages[0].src= "../images/spacer.gif";
    
  	SLHonImages[1] = new Image();
  	SLHoffImages[1] = new Image();	
  	SLHonImages[1].src= "../images/stores/shipping/shippingbernuthlogo.jpg";
  	SLHoffImages[1].src= "../images/stores/shipping/shippingbernuthlogoa.jpg";
    
  	SLHonImages[2] = new Image();
  	SLHoffImages[2] = new Image();	
  	SLHonImages[2].src= "../images/stores/shipping/shippinggeestlogo.jpg";
  	SLHoffImages[2].src= "../images/stores/shipping/shippinggeestlogoa.jpg";

}

isNS60 = (navigator.userAgent.indexOf("Netscape6/6.0")>0);
function Imageswap(arg_img, arg_src)
{
	if (isNS60)	return;
  	if(document.images)
  	{	
   		document.images[arg_img].src = arg_src;
  	}
}

function LaunchImgOn(which) {
  Imageswap("imgn" + which, SLHoffImages[which].src);
}
function LaunchImgOff(which) {
  Imageswap("imgn" + which, SLHonImages[which].src);
}

