
jQuery.noConflict();

jQuery(document).ready(function() {

	var panelContentHeight = jQuery("div#panel_contents").css("height");
	panelContentHeight = (panelContentHeight != null) ? panelContentHeight : 100;

	jQuery("div.panel_button").click(function(e){
		e.preventDefault();
	
		jQuery("div#panel").animate({
			height: panelContentHeight
		}, "slow");
		jQuery("div.panel_button").toggle();
		
		return false;
	});	
	
   jQuery("div#hide_button").click(function(e){
		e.preventDefault();

		jQuery("div#panel").animate({
			height: "0px"
		}, "slow");

		return false;
   });	
	
});
