
<!--
   
   function mouseOver(src,colorOver)
   {
   src.style.cursor = 'hand'; 
   src.bgColor = colorOver;
   
   }
   function mouseOut(src,colorIn)
   {
   src.style.cursor = 'default';
   src.bgColor = colorIn;
    
   }

   function mouseLinkOn(src, page){	
	 
		document.getElementById(src).style.color = 'white';
		document.getElementById(src).style.fontWeight = 'lighter';
		document.getElementById(src).style.textDecoration = 'none';
	 
   }

	function mouseLinkOut(src, page){				
		if(src==page)
		{
			document.getElementById(src).style.color = 'white';
			document.getElementById(src).style.fontWeight = 'bold';
			document.getElementById(src).style.textDecoration = 'none';

		}else{		
			document.getElementById(src).style.color = 'orange';
			document.getElementById(src).style.fontWeight = 'bolder';
			document.getElementById(src).style.textDecoration = 'none';
		}
	 
   }

  
// -->

