﻿    



    function ShowInfo() {
        $('table.showsTable tr').removeClass('selected');
        $(this).parent().parent().addClass('selected');
        
        var content = $(this).parent().parent().children('td.info').html();
        //alert(content);

        $('.showDetailInfo').removeClass('no_javascript_open');
        $('.showDetailInfo').hide();
        
        $('.showDetailInfo').html(content);
        
        $('.showDetailInfo').fadeIn();
        return false;
    }

    function RowOver() {
        $(this).addClass('over');
    }


    function RowOff() {
        $(this).removeClass('over');
    }    
    
    function InitShows()
    {

    $('table.showsTable tr a').live('click',ShowInfo);
    $('table.showsTable tr').hover(RowOver, RowOff);
    $('.scroll_items').jScrollPane({ scrollbarOnLeft: true });
    }
    
    


       
$(document).ready(function() {
InitShows();
      }); 