// RRMC JavaScript 
// ben@propelled.com


 function overNav(el, imgNm){
	 el.className='tdNavOn'; 
	 document.images[imgNm].src='/_common/nav/bullet_on.gif';
 }
 
 function offNav(el, imgNm){
	 el.className='tdNavOff'; 
	 document.images[imgNm].src='/_common/nav/bullet_off.gif';
 }
 
 function showArrow(num){
	document.images["item" + num].src='/_common/img/arrow_lsWhite.gif';	 
 }
 
 function hideArrow(num){
 	document.images["item" + num].src='/_common/img/arrow_blank.gif';	
 }