﻿var DotPosition = 0;

$(document).ready(function(){

    DotPosition = $("#Menu .Dot:first").position().left;

    $("#Menu").hover(function(){}, function(){
        $("#Menu .Dot").css("left", DotPosition);
    });
    
    $("#Menu a").hover(function(){
            
        $("#Menu .Dot").css("left", $(this).position().left - 5);
                
    }, function(){
    
        
    
    });
    
});

function popUp(URL, width, height) {
    day = new Date();
    id = day.getTime();
    if (width == null)
    {
        width = 350;
    }
    if (height == null)
    {
        height = 350;
    }

    eval("page" + id + " = window.open(URL, '" + id + "', 'toolbar=0,scrollbars=1,location=0,statusbar=0,menubar=0,resizable=1,width=" + width + ",heigh=" + height + ",left = 300,top = 0');");
}
