mouseoverarray = new Array();
mouseoutarray = new Array();

mouseoverarray["link_kayak_paddles"] = new Image(); mouseoverarray["link_kayak_paddles"].src = "/images/global/link_kayak_paddles.on.gif";
mouseoutarray["link_kayak_paddles"] = new Image(); mouseoutarray["link_kayak_paddles"].src = "/images/global/link_kayak_paddles.off.gif";

mouseoverarray["link_canoe_paddles"] = new Image(); mouseoverarray["link_canoe_paddles"].src = "/images/global/link_canoe_paddles.on.gif";
mouseoutarray["link_canoe_paddles"] = new Image(); mouseoutarray["link_canoe_paddles"].src = "/images/global/link_canoe_paddles.off.gif";

mouseoverarray["link_oars"] = new Image(); mouseoverarray["link_oars"].src = "/images/global/link_oars.on.gif";
mouseoutarray["link_oars"] = new Image(); mouseoutarray["link_oars"].src = "/images/global/link_oars.off.gif";

mouseoverarray["link_accessories"] = new Image(); mouseoverarray["link_accessories"].src = "/images/global/link_accessories.on.gif";
mouseoutarray["link_accessories"] = new Image(); mouseoutarray["link_accessories"].src = "/images/global/link_accessories.off.gif";

mouseoverarray["bug_canoe_paddles"] = new Image(); mouseoverarray["bug_canoe_paddles"].src = "/images/home/bug_canoe_paddles.on.jpg";
mouseoutarray["bug_canoe_paddles"] = new Image(); mouseoutarray["bug_canoe_paddles"].src = "/images/home/bug_canoe_paddles.off.jpg";


function popWindow(href, windowType) {
    var windowString;
    var windowTitle;
    
    switch(windowType) {
        case "zoomView" :
            windowString = "resizable=0,toolbar=0,scrollbars=0,width=900,height=150"
            windowTitle = "fullView"
            break;
        case "accessory" :
            windowString = "resizable=0,toolbar=0,scrollbars=0,width=600,height=473"
            windowTitle = "accessory"
            break;
        default :
            break;
    }
    
    if ((this.wind == null) || (this.wind.closed))
    {
		this.wind = window.open(href,windowTitle,windowString);

	}

	else 

		this.window.location = href;

	this.wind.focus();
}

/********************************************************
 * Copyright (C) 2002-2003, CodeHouse.com. All rights reserved.
 * CodeHouse(TM) is a registered trademark.
 *
 * THIS SOURCE CODE MAY BE USED FREELY PROVIDED THAT
 * IT IS NOT MODIFIED OR DISTRIBUTED, AND IT IS USED
 * ON A PUBLICLY ACCESSIBLE INTERNET WEB SITE.
 * 
 * CodeHouse.com JavaScript Library Module: Browser Sniffer Class
 *
 * You can obtain this script at http://www.codehouse.com
 ********************************************************/
function CJL_BrowserSniffer()
{
   var ua = navigator.userAgent;

   this.isSafari = function()
   {
      return /Safari/.test(ua);
   }

   this.getVersion = function()
   {
      if( this.isSafari() )
      {
         return Number(ua.match(/[0-9.]+$/));
      }   
   }
}