$(document).ready(function(){

	$(".table").find(".row:odd").addClass("even");
	$("#select_all").click(function(){
		if($(this).attr("checked")){ 
			$("input[id^='check'][type='checkbox']").each(function(){ $(this).attr({ checked:true }); }); 
			$(".selectall").html("Deselect All");
		}else{
			$("input[id^='check'][type='checkbox']").each(function(){ $(this).attr({ checked:false }); }); 
			$(".selectall").html("Select All");
		}
	});

	if($("#sort_by").find("option").length == 0){ $(".thead").hide(); }
	$("#sort_results").click(function(){   
		$(this).css({ backgroundImage: "url(images/ajax/small_blue.gif)" });
		$("#frmsort").submit();
	});

});