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

var d = document;
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 randOrd(){
	return (Math.round(Math.random())-0.5);
}



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



