function jsOver(sName){
	if (isLoaded) {
		if (typeof(m)=='object'){
			//hide the news scroller
			m.hide(); 
		} else {
			if (typeof(newsbar)=='object'){
				//hide the default div
				newsbar.hide(); 
			}
		}
		var theBlurb = eval(sName + "Blurb");
		theBlurb.show(); 
		roll.over(sName);
	}
}

function jsOut(sName){
	if (isLoaded) {
		var theBlurb = eval(sName + "Blurb");
		theBlurb.hide();
		if (typeof(m)=='object'){
			//show the news scroller
			m.show(); 
		} else {
			if (typeof(newsbar)=='object'){
				//show the default div
				newsbar.show(); 
			}
		}
		roll.out(sName);
	}
}

