/*
'*****************************************************
'
'Created By: Synergistic Networks, Inc. (www.syn.net)
'
'Created For: Tivoli Enterprises, Inc. (www.classiccinemas.com)
'
'Copywrite: The attached copyright code was developed as a proprietary product by Synergistic Networks, Inc.
'and made available to Classic Cinemas/Tivoli Enterprises, Inc. under an exclusive use agreement.  
'As such, it may not be copied, used, or modified for use by any other party or parties without 
'the express written consent of Synergistic Networks, Inc.  
'
'*****************************************************

 */

// Detect the browser being used
// Created by: Peter Belesis
	var intH = screen.height;
	var intW = screen.width;
	var strScreen = intW + intH;
	var fntSiz = 7;
	//alert(strScreen);
	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 = .50;				//secondsVisible = .5;
		fntCol = "black";				//fntCol = "blue";

		//define the font size based on the screen size...
		if (strScreen == ""){fntSiz = "7";}	
		if (strScreen == 0){fntSiz = "7";}
		if (strScreen == 1120){fntSiz = "7";}
		if (strScreen == 1400){fntSiz = "7";}
		if (strScreen == 1792){fntSiz = "9";}
		if (strScreen == 2304){fntSiz = "10";}

		//fntSiz = "7";
		//fntSiz = "10";
		fntBold = false;
		fntItal = false;
		fntFam = "arial,helvetica";
		backCol = "#123456";				//backCol = "#DDDDDD";
		overCol="#FF0000";				//overCol = "#FFCCCC";
		overFnt = "white";				//overFnt = "purple";
		borWid = 1;					//borWid = 2;
		borCol = "black";
		borSty = "solid";
		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