/*
 * sweaterstop.com-- JavaScript Navigation Menu Scripts
 *
 *  File name: menu.js
 * Created by: bluefusion, inc.
 *
 */

// Detect the browser being used
// Created by: Peter Belesis
	NS4 = (document.layers);
	IE4 = (document.all);
	ver4 = (NS4 || IE4);
	IE5 = (IE4 && navigator.appVersion.indexOf("5.")!=-1);
	isMac = (navigator.appVersion.indexOf("Mac") != -1);
	isMenu = (NS4 || (IE4 && !isMac) || (IE5 && isMac));

	function popUp(){return};
	function popDown(){return};

	if (!ver4) event=null;

// Initialize the defaults for the menu
// Created by: Peter Belesis
// Modified by: bluefusion, inc.
	if (isMenu)
	 {
		menuVersion = 3;
		menuWidth = 80;
		childOverlap = 20;				//childOverlap = 20;
		childOffset = 5;				//childOffset = 5;
		perCentOver = null;
		secondsVisible = .25;				//secondsVisible = .5;
		fntCol = "black";				//fntCol = "blue";
		fntSiz = "8";					//fntSiz = "10";
		fntBold = false;
		fntItal = false;
		fntFam = "arial,helvetica";
		backCol = "#FFFFFF";				//backCol = "#DDDDDD";
		overCol="#CCC2A1";				//overCol = "#FFCCCC";
		overFnt = "white";				//overFnt = "purple";
		borWid = 0;					//borWid = 2;
		borCol = "black";
		borSty = "none";
		itemPad = 3;
		imgSrc = "null";
		imgSiz = 10;
		separator = 0;                // Controls whether there is a line between menu choices and how wide it is  
		separatorCol = "black";
		isFrames = false;
		keepHilite = true; 
		clickStart = false;
		clickKill = false;				//clickKill = true;
	 }

// Load the menu
// Created by: Peter Belesis
// Modified by: bluefusion, inc.
	/* if (isMenu)
	 {
		document.write("<SCRIPT LANGUAGE='JavaScript1.2' SRC='/scripts/hierArrays.js'><\/SCRIPT>");
	 } 

	if (isMenu)
	 { 
		document.write("<SCRIPT LANGUAGE='JavaScript1.2' SRC='/scripts/hierMenus.js'><\/SCRIPT>");
	 }
*/
// EOF