$(document).ready(function() {
    $("#menu_Products").mouseover(function() {
        $(".lleft").hide();
        var position = $(this).position();
        $("#popName").text("Products");
        $("#popName").attr("href", "products_AFP.aspx");
        var listr = "<li><a href='products_AFP.aspx'>AFP</a></li>";
        listr += "<li><a href='Content.aspx?categoryId=25&articleId=37&TopCatId=1'>SEO Tools</a></li>";
        listr += "<li><a href='Content.aspx?categoryId=34&articleId=40&TopCatId=1'>Tracking Analytics</a></li>";
        listr += "<li><a href='Content.aspx?categoryId=10&articleId=41&TopCatId=1'>Mobisage</a></li>";
        listr += "<li><a href='Content.aspx?categoryId=26&articleId=38&TopCatId=1'>Pubsage</a></li>";
        $("#popUl").html(listr);
        $("#popMenu").attr("style", " z-index:10000;position:absolute;top:" + (position.top - 13) + "px;left:" + (position.left - 13) + "px;");
    });
    $("#menu_Services").mouseover(function() {
        $(".lleft").hide();
        var position = $(this).position();
        $("#popName").text("Services");//--------------------------------
        $("#popName").attr("href", "Service_adSage_Agency.aspx");
        var listr = "<li><a href='Service_adSage_Agency.aspx'>adSage Agency</a></li>";
        listr += "<li><a href='Content.aspx?categoryId=28&articleId=47&TopCatId=2'>Software Service</a></li>";
        $("#popUl").html(listr);
        $("#popMenu").attr("style", " z-index:10000;position:absolute;top:" + (position.top - 13) + "px;left:" + (position.left - 13) + "px;");
    });
    $("#menu_Community").mouseover(function() {
        $(".lleft").hide();
        var position = $(this).position();
        $("#popName").text("Community");
        $("#popName").attr("href", "Community.aspx");
        var listr = "<li><a href='Community.aspx'>News</a></li>";
        listr += "<li><a href='Announcement.aspx'>Announcement</a></li>";
        $("#popUl").html(listr);
        $("#popMenu").attr("style", " z-index:10000;position:absolute;top:" + (position.top - 13) + "px;left:" + (position.left - 13) + "px;");
    });
    $("#menu_Customer").mouseover(function() {
        $(".lleft").hide();
        var position = $(this).position();
        $("#popName").text("Customer Story");
        $("#popName").attr("href", "Content.aspx?categoryId=17&articleId=11&TopCatId=4");
        var listr = "<li><a href='Content.aspx?categoryId=17&articleId=11&TopCatId=4'>Our Customers</a></li>";
        listr += "<li><a href='Content.aspx?categoryId=16&articleId=12&TopCatId=4'>Testimonials</a></li>";
        $("#popUl").html(listr);
        $("#popMenu").attr("style", " z-index:10000;position:absolute;top:" + (position.top - 13) + "px;left:" + (position.left - 13) + "px;");
    });
    $("#menu_About").mouseover(function() {
        $(".lleft").hide();
        var position = $(this).position();
        $("#popName").text("About Us");
        $("#popName").attr("href", "Content.aspx?categoryId=21&articleId=8&TopCatId=5");    
        var listr = "<li><a href='Content.aspx?categoryId=21&articleId=8&TopCatId=5'>Introduction of adSage</a></li>";
        listr += "<li><a href='Content.aspx?categoryId=20&articleId=9&TopCatId=5'>Management Team</a></li>";
        listr += "<li><a href='Content.aspx?categoryId=19&articleId=16&TopCatId=5'>Advisory Board</a></li>";
        listr += "<li><a href='Content.aspx?categoryId=35&articleId=50&TopCatId=5'>Career</a></li>";
        listr += "<li><a href='Company_Contactus.aspx'>Contact Us</a></li>";
        $("#popUl").html(listr);
        $("#popMenu").attr("style", " z-index:10000;position:absolute;top:" + (position.top - 13) + "px;left:" + (position.left - 13) + "px;");
    });

    $(document).click(function() {
        $(".lleft").hide();
    });
})

