$(document).ready(function() 
    {
    	// Required for Tablesorter
        $("#hoster").tablesorter( {sortList: [[0,0], [0,0]]} );
        
        // Required for Hostermessage
        $(".close").click(function()
			{
        		$("#hoster").slideUp() 
    		});

            $("#report tr:odd").addClass("odd");
            $("#report tr:not(.odd)").hide();
            $("#report tr:first-child").show();
            
            $("#report tr.odd").click(function(){
                $(this).next("tr").toggle();
                $(this).find(".arrow").toggleClass("up");
            });
    } 
);