/******************************************************************************************************************/
/*	This file contains control variables for controlling behavious of various aspects of the scripts on the page. */
/******************************************************************************************************************/

/*******************************/
/*	Interface (menu) controls. */
/*******************************/

var Int_Menu_Hide_Delay = 500;		/*	Time until menu disappears after the mouse is moved away from the menu and the
										link that triggers it (in ms). */

var Int_Menu_Force_Hide = false;	/*	If set to true, this forces submenus to be hidden when the mouse moves over
										sibling or ancestor links (regardless of whether they have menus or not).
										If set to false, submenus will still be hidden if the sibling / ancestor menu
										has a submenu of its own. */

var imgs = new Array('MainTitle', 'MainCosmos', 'MainLavender', 'FrontCosmos', 'FrontCosmos2');
									/*	An array containing IDs of all images that have alpha-channel versions. */

if (window.RegExp) var non_alpha_formats = new RegExp ('(?:\.jpg|\.jpeg|\.gif|_ie\.png)(?="?[)]?$)');
									/*	A regular expression containing a list of non-alpha-channel extensions which
										will be replaced with ".png" in order to load the alpha-channel version. */

/*	Set a variable so that the main script knows this file has loaded */
var file_control = true;
