$(document).ready(function() {
	$("div.panel_button").click(function(){
		/*
		$("div#panel").slideDown({
			height: "400px"
		})
		$("div.panel_button").toggle()
		$("ul#quicknav").fadeOut('fast')
		
		return false;*/
		return true;
	});	
	
   $("div#hide_button").click(function(){
		/*
		$("div#panel").slideUp({
			height: "0px"
		}, "fast")
		$("ul#quicknav").fadeIn('slow')
		
		return false;*/
		return true;	
   });	
});
