$j( document ).ready( function() {
    $j( '.report' ).live( "click", function() {
        $j( "a:first", this ).click();
    } );

    $j( ".report" ).live( "mouseover", function() {
        $j( this ).addClass( "reportHover" );
    } ).live( "mouseout", function() {
        $j( this ).removeClass( "reportHover" );
    } );

    $j( ".tbArrow" ).hover( function() {
        $j( this ).addClass( "tbArrowHover" );
    }, function() {
        $j( this ).removeClass( "tbArrowHover" );
    } );

    $j( "#showMoreReports" ).click( function() {
        $j( "#showMoreReports" ).hide();
        $j( "#loadingReports" ).show();
        $j( "#moreReports" ).load( "moreReports",
                                   {},
                                   function() {
                                       $j( "#loadingReports" ).hide();
                                   } );
    } );
} );
