function RollOver(obj){
	obj.src = obj.src.split('.jpg')[0] + "_on.jpg";
}
function RollOut(obj){
	obj.src = obj.src.split('_on')[0] + obj.src.split('_on')[1];
}


function showSub(str){
	document.getElementById(str).style.display = 'block';
}
function hideSub(str){
	document.getElementById(str).style.display = 'none';
}
