		var isFalse, isTrue;
		
		/**
			Highlight the MouseOver when coming
		*/
   		function butRubber (PicName,PicObj){
			if (PicName != isTrue){
				window.document.images[PicName].src = PicObj.src;
			}
			return;
		}
		
		/**
			Stop the MouseOver if User is klicking a link
		*/
   		function stopRubber (PicName,PicObj){
			if (isFalse == false){
				window.document.images[isTrue].src = butLow.src;
			} 
			window.document.images[PicName].src = PicObj.src;
			isTrue  = PicName;
			isFalse = false;
			return;
		}
		
	
		
