var act_page_img=null;
var iedom=document.all||document.getElementById;

function hlon(img){
	if(img!=act_page_img){
		if(!img.osrc){
			img.osrc=img.src;
			img.hsrc=img.src.slice(0,img.src.length-4);
			ext=   img.src.slice(  img.src.length-3,img.src.length);
			img.hsrc+="_h."+ext;
		}		
		img.src=img.hsrc;
	};
};			

function hloff(img){
  if(img!=act_page_img){
		img.src=img.osrc;
	};
};