$(function(){

	$("#site-list tr").hover(
	   function(){
	       var $origColor = $(this).find("td").css("background-color");
            $(this)
    			.children("td")
    			.attr("rel", $origColor)
    			.css("background-color", "#eee");
        	}, 
       function(){
            var $newColor = $(this).find("td").attr("rel");
    		$(this)
    			.children("td")
    			.css("background-color", $newColor);
	   }
    );
	
	$("#main-content").append("<div class='whiteout'></div>");
	
	$("#alpha-sort").click(function(){
        $("#site-list").tablesorter({
            sortList: [[1,0]]
        });     
        return false;
	});
	
	$("#status-sort").click(function(){
        $("#site-list").tablesorter({
            sortList: [[0,0]]
        });     
        return false;
	});
		
});