// shw_siteSettings.js (c)2008 SugarHill Works LLC - http://www.sugarhillworks.com

var d = document;


// ********************************************************************************************************** //

// ********************************************************************************************************** //
// ********************************************************************************************************** //
// ********************************************************************************************************** //
// ********************************************************************************************************** //
// *********************************                                        ********************************* //
// *********************************      DO NOT EDIT ABOVE THIS LINE       ********************************* //
// *********************************                                        ********************************* //
// *********************************         SET SITE OPTIONS BELOW         ********************************* //
// *********************************                                        ********************************* //
// ********************************************************************************************************** //
// ********************************************************************************************************** //
// ********************************************************************************************************** //
// ********************************************************************************************************** //
//

// THE FOLLOWING LINES AFFECT THE TITLE THAT APPEARS IN THE BROWSER WINDOW'S TITLEBAR
// [any legal HTML text is allowed]

var defaultTitle = "CHELSEA PHOTOGRAPHIC SERVICES";
var titleSeparator = " | ";


// ********************************************************************************************************** //

// ********************************************************************************************************** //
// ********************************************************************************************************** //
// ********************************************************************************************************** //
// ********************************************************************************************************** //
// *********************************                                        ********************************* //
// *********************************      DO NOT EDIT BELOW THIS LINE       ********************************* //
// *********************************                                        ********************************* //
// ********************************************************************************************************** //
// ********************************************************************************************************** //
// ********************************************************************************************************** //
// ********************************************************************************************************** //

// ********************************************************************************************************** //


var isitIE = false;
var isitIE7 = false;
if (window.attachEvent && !window.opera) { //object-detect IE5+, exclude opera
	isitIE = true;
	if(navigator.appVersion.match(/MSIE 7/)) isitIE7 = true
}
//
//// turn off 'image toolbar' in older versions of IE
if(isitIE == true){
	document.write("<meta HTTP-EQUIV=\"imagetoolbar\" content=\"no\">");
}
//
// for IE6+ so we can use appendChild, etc...
if (!window.Node) {
	var Node = {
		ELEMENT_NODE: 1,
		ATTRIBUTE_NODE: 2,
		TEXT_NODE: 3,
		COMMENT_NODE: 8,
		DOCUMENT_NODE: 9,
		DOCUMENT_FRAGMENT_NODE: 11
	};
}

function site_init() {
	document.getElementsByTagName('title')[0].text = defaultTitle;
//	getRootPath();
//	makeMenu();
}

//
//these vars used in shwFade to define the ss container for image centering
//on this site, set to values from css
//var maxvpW = 640;
//var maxvpH = 440;
//
//


//var listMenu = new Object();
//function activateMenu() {
//	listMenu = new FSMenu('listMenu', true, 'display', 'block', 'none');
//	listMenu.animations[listMenu.animations.length] = FSMenu.animSwipeDown;
//	listMenu.activateMenu("listMenuRoot", null);
//	// Activation: Include the ID for your menu in here.
//	setTimeout('activePageHighlight("listMenuRoot");',1);
//}

