$(document).ready(function()
{

	$("div.panel_button").click(function(){
		$("div#panel").animate({
			height: "200px"
		})
		.animate({
			height: "100px"
		}, "fast");
	$("div.panel_button").toggle(); });	
	
	$("div#hide_button").click(function(){
		$("div#panel").animate({
			height: "0px"
		}, "fast");
	});	


	
  $(".torrentContainer:even").css("background-color", "#CCC");
  $(".torrentContainer:odd").css("background-color", "#DDD");  
});

