jQuery(document).ready(function() {

    jQuery('.lineup .artist').hover(function() {
        jQuery(this).css('text-decoration', 'underline');
    },
    function() {
        jQuery(this).css('text-decoration', 'none');
    });

    jQuery('.lineup .artist').click(function() {
        jQuery('.artistInfo').remove();
        var artistName = jQuery(this).attr('artist');
        var artistInfo = jQuery('<div class="artistInfo"></div>');
        artistInfo.load('/RM2011/'+artistName+'/info.html');
        jQuery(this).parent().append(artistInfo);

        var artistInfoTop = $(document).scrollTop() + 50;
        var artistInfoLeft = ($(window).width() - 420) / 2;
        artistInfo.css({'top' : artistInfoTop, 'left' : artistInfoLeft});
    });

    jQuery('.closeArtistInfo').live('click', function() {
        jQuery(this).parent().remove();
    });

});



