

function FrontPage()
{
    return $.extend(this, {
        $sources: $("#sources"),
        $topSources: $("#sources li")
    })
}


$.extend(FrontPage.prototype, {
    init: function ()
    {
        this.initTopSources()
    },

    initTopSources: function ()
    {
        var A = true;
        this.$topSources.hover(function ()
        {
            var B = $(this).find(".hc");
            $(".hc").fadeOut("fast");
            A = setTimeout(function ()
            {
                clearTimeout(A);
                B.fadeIn("fast")
            }, 400)
        }, function ()
        {
            clearTimeout(A);
            $(".hc", this).fadeOut("fast")
        })
    },

    getScreenNameFromSearchResults: function (A)
    {
    }

});


