// All code © elliot@mirashade.com
// 
function swapImg(tDir, swapimg) {
	if (tDir == 1) {
		document.images[swapimg].src = "images/buttons/"+swapimg+"2.gif";
	} else {
		if (swapimg != gSelSection){
			document.images[swapimg].src = "images/buttons/"+swapimg+"1.gif";
		}
	}
}
function setSection(tSect) {
	gSelSection = tSect;
	swapImg(1, tSect);
}
function MM_openBrWindow(theURL,winName,features) { //v2.0
  window.open(theURL,winName,features);
}
// © mirashade // 