var kompliment = {
    _resize: function(){
        var left=document.getElementById("main_left_menu").clientHeight;
        var center=document.getElementById("pagecenter").clientHeight;
        var right=document.getElementById("pageright").clientHeight;
        var max=Math.max(left,center,right);
        document.getElementById("main_left_menu").style.height = (max-147) + "px";
        document.getElementById("pagecenter").style.height = max + "px";
        document.getElementById("pageright").style.height = max + "px";
    },
	
    vicemene:function(oObjectToShow, oObjectToHide, oLink){
        $('#'+oObjectToShow).toggle();
        $('#'+oObjectToHide).toggle();
		
        var linkText = $('#'+oLink).html();
		
        if (linkText.indexOf('V') != -1){
            $('#'+oLink).innerHTML = "M&eacute;n&#283; &gt;";
        }
        if (linkText.indexOf('M') != -1){
            $('#'+oLink).innerHTML = "V&iacute;ce &gt;";
        }
        kompliment._resize();
    },

    popup:function(URL, iWidth, iHeight) {
        var day = new Date();
        var id = day.getTime();
        var winW = iWidth;
        var winH = iHeight;
        if (parseInt(navigator.appVersion)>3) {
            if (navigator.appName=="Netscape") {
                winW = window.innerWidth;
                winH = window.innerHeight;
            }
            if (navigator.appName.indexOf("Microsoft")!=-1) {
                winW = document.body.offsetWidth;
                winH = document.body.offsetHeight;
            }
        }
        var Wstred = (winW / 2) - 250;
        var Hstred = (winH / 2) - 100;
        var windowTitle = "Recept";
        var popupwindow = window.open(URL,windowTitle , 'toolbar=0,scrollbars=0,location=0,statusbar=yes,status=no,menubar=0,resizable=0,width='+iWidth+',height='+iHeight+',left='+Wstred+',top='+Hstred+'');
    }
};

var Partneri = {
    show:function(elemid, src){
        $(elemid).src = src;
    }
}

$(document).ready(function() {
    kompliment._resize();
    // ColorBox
    if ($("a[rel='gal_pred2']").length > 0) {
        $("a[rel='gal_pred2']").colorbox();
    }

    if ($("a[rel='gal_po2']").length > 0) {
        $("a[rel='gal_po2']").colorbox();
    }

    if ($("a[rel='gal_pred3']").length > 0) {
        $("a[rel='gal_pred3']").colorbox();
    }

    if ($("a[rel='gal_po3']").length > 0) {
        $("a[rel='gal_po3']").colorbox();
    }

    if ($("a[rel='gal_pred4']").length > 0) {
        $("a[rel='gal_pred4']").colorbox();
    }

    if ($("a[rel='gal_po4']").length > 0) {
        $("a[rel='gal_po4']").colorbox();
    }
});
