
var mx_current = null;
var mx_closetimer = null;
var mx_opentimer = null;
var mx_openobj = null;

function mx_open()
{
    var xx = $(mx_openobj);
	if (xx) {
        mx_cancelopentime();
		mx_cancelclosetime();

        $(mx_openobj).fadeIn("fast").show();
        $(mx_openobj+' img').ifixpng();

        if (mx_current) $(mx_current).fadeOut("fast");
		mx_current = mx_openobj;
	} else if (mx_current) {
		$(mx_current).fadeOut("fast");
		mx_current = null;
	}
}

function mx_opentime(obj)
{
    mx_openobj = "#"+obj;
    mx_opentimer = window.setTimeout('mx_open()', 500);
}

function mx_cancelopentime()
{
	if (mx_opentimer) {
		window.clearTimeout(mx_opentimer);
		mx_opentimer = null;
	}
}

function mx_closetime()
{
	mx_closetimer = window.setTimeout('mx_close()', 500);
}

function mx_cancelclosetime()
{
	if (mx_closetimer) {
		window.clearTimeout(mx_closetimer);
		mx_closetimer = null;
	}
}

function mx_close()
{
	if (mx_current) {
		$(mx_current).fadeOut("fast");
	}
	mx_current = null;
}

document.onclick = mx_close;

function mx_setup(nn)
{
    $("#m_"+nn).mouseover(function(){ mx_opentime("s_"+nn); });
    $("#m_"+nn).mouseout(function(){ mx_cancelopentime(); /*mx_closetime();*/ });
    $("#s_"+nn).fadeOut().mouseover(function(){ mx_cancelclosetime(); });
}

function mx_setup_spafix()
{
    $("#s_spa #spafix").mouseover(function(){
        mx_close();
        mx_cancelclosetime();
//        mx_closetime();
//        mx_opentime("s_spa");
    });
}

function mx_setup_sadfix()
{
    $("#s_sad #sadfix").mouseover(function(){
        mx_cancelclosetime();
    });
}

function preload_n_fix_one(who, pic)
{
    var img = new Image();
    img.src = pic;
//    $(who).ifixpng();
}

function preload_n_fix_ribbons()
{
    preload_n_fix_one('#s_pri img','http://sumaterra.ru/themes/default/images/s_pri.png');
    preload_n_fix_one('#s_zal img','http://sumaterra.ru/themes/default/images/s_zal.png');
    preload_n_fix_one('#s_kab img','http://sumaterra.ru/themes/default/images/s_kab.png');
    preload_n_fix_one('#s_det img','http://sumaterra.ru/themes/default/images/s_det.png');
    preload_n_fix_one('#s_kux img','http://sumaterra.ru/themes/default/images/s_kux.png');
    preload_n_fix_one('#s_van img','http://sumaterra.ru/themes/default/images/s_van.png');
    preload_n_fix_one('#s_sad img','http://sumaterra.ru/themes/default/images/s_sad.png');
    preload_n_fix_one('#s_spa img','http://sumaterra.ru/themes/default/images/s_spa.png');
}

function showitem(oid,sty)
{
    var h=$(window).height()/2-150;
    var w=$(window).width()/2-210;
    var nwin=window.open('http://sumaterra.ru//index.php?mod=item&id='+oid+'&s='+sty,'itemdetails','resizable=1,toolbar=no,location=no,directories=no,status=no,menubar=no,scrollbars=yes,resizable=yes,copyhistory=no,width=420,height=300,top='+h+',left='+w);
	nwin.focus();
}


