//<script>
var cache = new Array();
	for(var i=1;i<12;i++) {
	cache[i] = new Image();
	cache[i].src = '/images/default-menu' + i + '-over.jpg';
	}

function rollOver(element, number) {
//element.src = '/images/default-menu' + number + '-over.jpg';
element.src = cache[number].src;
}

function rollOut(element, number) {
element.src = '/images/default-menu' + number + '-out.jpg';
}


var popupImageHtml = false;

function popupImage(src) {
var img = new Image();
img.src = src;
var width = img.width;
var height = img.height;
	if(width == 0 || height == 0) {
	setTimeout('popupImage(\''+src+'\')', 1000);
	return false;
	}
var left=screen.width/2-width/2;
var top=screen.height/2-height/2;
var html = '<html><body style="margin:0;padding:0"><img src="'+src+'" width="'+width+'" height="'+height+'" onclick="window.close()" title="Закрыть окно" style="cursor:hand;cursor:pointer" /></body></html>';
var popup = window.open('/popup.html', "Window", "directories=0,scrollbars=auto,toolbar=0,location=0,menubar=0,resizable=0,status=0,width="+width+",height="+height+",left="+left+",top="+top+"");
//popupImageHtml = html;
popup.document.write(html);
popup.focus();
return 1;
}
//</script>
