jQuery(document).ready( function() {
	jQuery(".toro-sortable").tablesorter( {widgets: ['zebra']} ); 

	jQuery('.toro-long-help').toggle(
		function display_help(){
		var t = jQuery(this);
		t.css("background","#feefb3 none");
		t.css("border", "1px solid #9F6000");
		t.animate({ 
			width: "98%",
			backgroundImage: "none"
	      }, 200, function(){
	    	  t.css("padding","6px");
	    	  t.children().slideDown();
	      });
	},
	function hide_help(){
		var t = jQuery(this);
		t.children().slideUp();
		t.animate({ 
			width: "20px",
			border: "0px"
		}, 400);
		t.css("background","transparent url('/__toro/icons/help.png') right top no-repeat");
		t.css("padding","16px 6px");
	}
	);
})