$(document).ready(function() {
	// FIX PNG
	$(document).pngFix();
	$("#expand_button").click(function(){
		$("div#panel").animate({
			height: "315px"
		})
		.animate({
			height: "315px"
		}, "fast");
		//alert($("#collapse_button").css("height"));
		//alert($("#expand_button").css("height"));
		$("#collapse_button").css("top", "-45px");
		$("#expand_button").css("top", "-99999px");
	});	
	
   $("#collapse_button").click(function(){
		$("div#panel").animate({
			height: "0px"
		}, "fast");
		$("#expand_button").css("top", "0px");
		$("#collapse_button").css("top", "-99999px");	
   });	
	
});