$(document).ready(function(){
	
	$(".toggle_container").hide();

	$("h2.trigger").click(function(){
		$(this).toggleClass("active").next().slideToggle("slow");
		return false;
	});
  
      $('tbody tr:odd').addClass('odd');  
      $('tbody tr:even').addClass('even');
      $('tbody tr:even td:first-child').css({"border-left" : "0px none"});
      $('tbody tr:odd td:first-child').css({"border-left" : "0px none"});
      $('tbody tr:even td:last-child').css({"border-right" : "0px none"});
      $('tbody tr:odd td:last-child').css({"border-right" : "0px none"});
      $('tbody tr:first-child td').css({"border-top" : "0px none"});
      $('tbody tr:last-child td').css({"border-bottom" : "0px none"});   

});
