function jerry_swap(el2){
//	alert(el.type);
	el=event.srcElement;
//	if (el.tagName!='img')
	tmp=el.src;
	el.src=el2;
	el2=tmp;
	el=null;
}

