if(typeof sIFR == "function"){
sIFR.replaceElement(named({sSelector:"#content h1",  sFlashSrc:"pentweaks.swf", sColor:"#000000", sWmode:"transparent"}));
};


function menu(div) {
	Hide('m1');
	Hide('m2');
	Hide('m3');
	Hide('m4');
	Hide('m5');
	Show(div);
	
}

  function Show(str) {
x = document.getElementById(str);
x.style.display = 'block';
}

  function Hide(str) {
x = document.getElementById(str);
x.style.display = 'none';
}

function runSiteScripts () {

// gets rid of focus box on click
if(document.getElementsByTagName) {
var a = document.getElementsByTagName("a");
//collect all anchors A
for(var i = 0; i < a.length; i++){
// mouse onfocus, blur anchors
a[i].onfocus = function(){this.blur();};
}
}

}