﻿
// Sol ve Sağ kolonun yüksekliğini ayarlama
function IsReadyDocument() {
    var height_content_right = document.getElementById("content_right").offsetHeight;
    document.getElementById("content_left").setAttribute("style", "min-height:" + (height_content_right + 9) + "px !important;");
}

// Kayan Üst Menü
$(function () {
    $("#1").lavaLamp({
        fx: "backout",
        speed: 700,
        click: function (event, menuItem) {
            return true;
        }
    });
});


// Extra menüler
var menuids = ["suckertree1"] //Enter id(s) of SuckerTree UL menus, separated by commas
function buildsubmenus() {
    for (var i = 0; i < menuids.length; i++) {
        var ultags = document.getElementById(menuids[i]).getElementsByTagName("ul")
        for (var t = 0; t < ultags.length; t++) {
            ultags[t].parentNode.getElementsByTagName("a")[0].className = "subfolderstyle"
            if (ultags[t].parentNode.parentNode.id == menuids[i]) //if this is a first level submenu
                ultags[t].style.left = "188px"; // ultags[t].parentNode.offsetWidth + "px" //dynamically position first level submenus to be width of main menu item
            else //else if this is a sub level submenu (ul)
                ultags[t].style.left = ultags[t - 1].getElementsByTagName("a")[0].offsetWidth + "px" //position menu to the right of menu item that activated it
            ultags[t].parentNode.onmouseover = function () {
                this.getElementsByTagName("ul")[0].style.display = "block"
            }
            ultags[t].parentNode.onmouseout = function () {
                this.getElementsByTagName("ul")[0].style.display = "none"
            }
        }
        for (var t = ultags.length - 1; t > -1; t--) { //loop through all sub menus again, and use "display:none" to hide menus (to prevent possible page scrollbars
            ultags[t].style.visibility = "visible"
            ultags[t].style.display = "none"
        }
    }
}
if (window.addEventListener)
    window.addEventListener("load", buildsubmenus, false)
else if (window.attachEvent)
    window.attachEvent("onload", buildsubmenus)


//***Almostrom - Root CLASS ***
if (typeof AlmostromJS == "undefined") var AlmostromJS = new Object();
AlmostromJS = function () { };
var ControlKeys = (function () {
    return {
        "Config": "___Config", "Frame": "___Frame", "None": null
    };
})();

//***Almostrom - Static Window CLASS ***
AlmostromJS.Window = (function () {
    return {
        New: function (Url, Yuzde) {
            var Percent = Yuzde == null ? 66 : Yuzde;
            var X = window.screen.width;
            var Y = window.screen.height;
            var Width = ((X * Percent) / 100);
            var Height = ((Y * Percent) / 100);
            var KalanEn = X - Width;
            var KalanBoy = Y - Height;
            var Left = KalanEn / 2;
            var Top = KalanBoy / 2;
            window.open(Url, "AlmostromWindow", "resizable=0,location=0,status=0,scrollbars=1,width=" + Width + ",height=" + Height + ",top=" + Top + ",left=" + Left);
            return false;
        },
        DataPost: function (fileUrl) {
            window.top.opener.DataGet(fileUrl, true);
            window.top.close();
            window.top.opener.focus();
        },
        DataGet: function (Url, Tip) {
            alert(Url);
        }
    };
})();
        
