if(document.images) {
	// preload
	image1 = new Image();
	image1.src = "/images/header_bg4.jpg";
	image2 = new Image();
	image2.src = "/images/nav_bg4.gif";
	image3 = new Image();
	image3.src = "/images/body_bg4.jpg";
}
var old_index = 0;
var timeout_id;
function clear_timeouts() {
	if(document.getElementById) {
		if(timeout_id != null)
			self.clearTimeout(timeout_id);
	}
}
function navon(index) {
	if(document.getElementById) {
		if(timeout_id != null) {
			self.clearTimeout(timeout_id);
		}
		if(old_index != 0) {
			if(document.getElementById(old_index + "Sub"))
				document.getElementById(old_index + "Sub").style.display = "none";
			document.getElementById(old_index).className = "navbgoff";
		}
		if(document.getElementById(index + "Sub"))
			document.getElementById(index + "Sub").style.display = "inline";
		document.getElementById(index).className = "navbgon";
		old_index = index;
	}
}
function navoff() {
	if(document.getElementById) {
		if(old_index != 0)
			timeout_id = setTimeout("if(document.getElementById(old_index + 'Sub')) { document.getElementById(old_index + 'Sub').style.display = 'none'; } document.getElementById(old_index).className = 'navbgoff';", 100);
	}
}
function addComment(postID) {
	var commentWin = window.open("/blog_comments_add.cfm?postID=" + postID, "commentWin", "width=450,height=400,scrollbars=yes,resizable=yes");
	commentWin.focus();
}
function viewComments(postID) {
	var viewCommentWin = window.open("/blog_comments.cfm?postID=" + postID + "&newwin=1", "viewCommentWin", "width=650,height=450,scrollbars=yes,resizable=yes");
	viewCommentWin.focus();
}
function loadFlash(flashMovie, width, height) {
	//document.write('<object classid="clsid:d27cdb6e-ae6d-11cf-96b8-444553540000" codebase="http://fpdownload.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=8,0,0,0" width="' + width + '" height="' + height + '" align="middle"><param name="allowScriptAccess" value="sameDomain"><param name="movie" value="' + flashMovie + '"><param name="quality" value="high"><embed src="' + flashMovie + '" quality="high" width="' + width + '" height="' + height + '" align="middle" allowScriptAccess="sameDomain" type="application/x-shockwave-flash" pluginspage="http://www.macromedia.com/go/getflashplayer"></embed></object>');
	document.write('<object classid="clsid:d27cdb6e-ae6d-11cf-96b8-444553540000" codebase="http://fpdownload.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=8,0,0,0" width="' + width + '" height="' + height + '" align="middle"><param name="allowScriptAccess" value="sameDomain"><param name="wmode" value="transparent"><param name="movie" value="' + flashMovie + '"><param name="quality" value="high"><embed src="' + flashMovie + '" quality="high" width="' + width + '" height="' + height + '" align="middle" allowScriptAccess="sameDomain" wmode="transparent" type="application/x-shockwave-flash" pluginspage="http://www.macromedia.com/go/getflashplayer"></embed></object>');
}
