$(function() {

    var button_hovering = false;
    var item_hovering = false;

    $('.ajax_latest').hover(function() {

        var pos = $(this).offset();
        $('.ajax_latest_display').css('top',(pos.top + 30));
        $('.ajax_latest_display').css('left',(pos.left - 75));
        $('.ajax_latest_display').show();
        button_hovering = true;

    },function() {

        button_hovering = false;

    });

    $('.ajax_latest_display').hover(function() { item_hovering = true; },function() { item_hovering = false; })

    $('.ajax_latest').everyTime(1000,function() {

        if(button_hovering == false && item_hovering == false)
        {

            $('.ajax_latest_display').hide();

        }

    });

});
