
function OpenChildWin(nurl,nname, nwidth,nheight) {
  popupWin = window.open(nurl, nname, 'scrollbars=1,width=' + nwidth +',height=' + nheight)
}

function featureMe(){

slidein = new Fx.Style($('slideFeature'), 'height', {
	duration: 1000, 
	transition: Fx.Transitions.Quart.easeInOut
	});
	slidein.start(0,400);

}
function unFeatureMe(){

slideout = new Fx.Style($('slideFeature'), 'height', {
	duration: 1000, 
	transition: Fx.Transitions.Quart.easeInOut
	});
	slideout.start(400,0);

	
}
function featureMeBounded(amount){

slidein = new Fx.Style($('slideFeature'), 'height', {
	duration: 1000, 
	transition: Fx.Transitions.Quart.easeInOut
	});
	slidein.start(0,amount);

}
function unFeatureMeBounded(amount){

slideout = new Fx.Style($('slideFeature'), 'height', {
	duration: 1000, 
	transition: Fx.Transitions.Quart.easeInOut
	});
	slideout.start(amount,0);

	
}
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();};
}
}

}