/**
 * CMS Base System
 * Copyright 2006 Foxbright, Ltd. All Rights Reserved.
 */

// Set class of topMenuItem text
var baseClass = 'base';
var overClass = 'active';

// Set time after mouseOut that drop menu remains visible:
var menuHideDelay=500;
var timerID=null;

// Determine browser name, version & platform:
var BV = parseFloat(navigator.appVersion.indexOf("MSIE")>0?navigator.appVersion.split(";")[1].substr(6):navigator.appVersion);
var BN = navigator.appName;
var nua = navigator.userAgent;
var IsMac=(nua.indexOf('Mac')!=-1);
var IE=(BN.indexOf('Explorer')!=-1);


// Define drop menu offset values
var dropMenuNegativeOffset = (IE) ? 191 : 188;  // number of pixels to the left of the top menu item where drop menu appears

// Y location of drop relative to top of menu button.
var dropMenuVerticalOffset = (IE) ? 0 : 0;
