<!--
	var oldObj,oldtarget;
	
	function swapimg(Obj, target)
	{		
		if(oldObj)
			oldObj.src = oldtarget;
			
		oldObj = Obj;
		oldtarget = Obj.src;
		Obj.src = target;
		
	}
	
	function restoreimg()
	{
		oldObj.src = oldtarget;
	}
//-->