$(document).ready(function() {
	$("a.togglebutton").click(function(){
		$("div#panel").animate({
			height: "295px"
		})
		.animate({
			height: "235px"
		}, "fast");
		$("a.togglebutton").toggle();
	
	});	
	
   $("a#hide_button").click(function(){
		$("div#panel").animate({
			height: "0px"
		}, "fast");
		
	
   });
   
   $('a.backtoTop[href=#sliding-panel-container]').click(function(){
        $('html, body').animate({scrollTop:0}, 'slow');
        return false;
    });
	
});


  


