<!--
/* ----------------------------------------------------------------------------
IE HOVER (IE6)
-----------------------------------------------------------------------------*/
iehover= function() {
if (document.all&&document.getElementById) {
navRoot = document.getElementById("navbar");
for (i=0; i<navRoot.childNodes.length; i++) {
node = navRoot.childNodes[i];
if (node.nodeName=="LI") {
node.onmouseover=function() {
this.className+=" over";
  }
  node.onmouseout=function() {
  this.className=this.className.replace(" over", "");
   }
   }
  }
 }
}

<!--
/* ----------------------------------------------------------------------------
EXTERNAL LINKS by Kevin Yank
-----------------------------------------------------------------------------*/
externalLinks = function() {
 if (!document.getElementsByTagName) return;
 var anchors = document.getElementsByTagName("a");
 for (var i=0; i<anchors.length; i++) {
   var anchor = anchors[i];
   if (anchor.getAttribute("href") &&
       anchor.getAttribute("rel") == "external")
     anchor.target = "_blank";
 }
}
window.onload = externalLinks;


function start() {
  iehover();
  externalLinks();
}
window.onload = start;

<!--
/* ----------------------------------------------------------------------------
LIGHTBOX FUNCTIONS
-----------------------------------------------------------------------------*/
$(document).ready(function() {
	$(function() {
		$('ul.gallery a').lightBox({
		imageLoading: 'scripts/lightbox/images/lightbox-ico-loading.gif',
		imageBtnClose: 'scripts/lightbox/images/lightbox-btn-close.gif',
		imageBtnPrev: 'scripts/lightbox/images/lightbox-btn-prev.gif',
		imageBtnNext: 'scripts/lightbox/images/lightbox-btn-next.gif'
		});
	});
});
//-->

<!--
/* ----------------------------------------------------------------------------
POPUP WINDOW
-----------------------------------------------------------------------------*/
//Popup Window Script created by Jeff Sanders - http://www.randomactsdesign.com
// this script is free to use and distribute
// but please give credit
function displayWindow(url){
	settings='fullWindow,fullscreen,scrollbars=no,addressbar=no';
	slideshow=window.open(url,"",settings);}
//-->
