﻿$(document).ready(function() {
    $(".topcolumn").each(function() {
        var subleft = $(this).offset().left;
        var subwidth = $(".subcolumns:eq(" + $(".topcolumn").index(this) + ")").width();
        var globalleft = $("#globallinks ul:eq(0)").offset().left;
        var globalwidth = $("#globallinks ul:eq(0)").width();
        if (subleft + subwidth < globalleft + globalwidth)
            $(".subcolumns:eq(" + $(".topcolumn").index(this) + ")").css("left", $(this).offset().left);
        else
            $(".subcolumns:eq(" + $(".topcolumn").index(this) + ")").css("left", globalleft + globalwidth - subwidth - 50);
    });
    $(".topcolumn").mouseover(function() {
        $(".subcolumns:eq(" + $(".topcolumn").index(this) + ")").css("display", "block");
        $(".subcolumns:gt(" + $(".topcolumn").index(this) + ")").css("display", "none");
        $(".subcolumns:lt(" + $(".topcolumn").index(this) + ")").css("display", "none");
        $("#itembg").css("display", "block");
        $("#itembg").css("left", $(this).offset().left - 8);
        $("#itembg .itembg2:eq(0)").css("width", $(this).width() - 24);
    });
});
