$(document).ready(function(){

	$("#add_news").click(function () {
	  $(".add_news_div").toggle();
	});
	
	$("#show_profiler").click(function () {
	  $("#codeigniter_profiler").toggle();
	});
	


	$(".listtable tr").mouseover(function() {
  		$(this).addClass("over");
  	});
  
  	$(".listtable tr").mouseout(function() {
  		$(this).removeClass("over");
  	});
  	
  	$(".listtable tr:even").addClass("alt");
  	

});

