var art = new function()
{
    this.init = function(e)
    {
        $('#artists .MaiN').css({display:'none'}).fadeIn(1300);
        $('img.fprinfo').bind('mouseenter', this.showInfo);
        $('a.infobox').bind('mouseleave', this.hideInfo);
    };

    this.hideInfo = function(e)
    {
        e.stopPropagation();
        e.preventDefault();
        if ($(e.target).attr('class') == 'infobox') {
            $(e.target).hide();            
        }
        else {
            $(e.target).parent().hide();
        }
    };

    this.showInfo = function(e)
    {
        e.stopPropagation();
        e.preventDefault();
        $(e.target).prev('a.infobox').css({display:'inline-block'});
    };
};
$(function(){art.init();});

