
jQuery(document).ready(function() {
	jQuery(".fa_panel_button").click(function(){
		jQuery("div#panel").animate({
			height: "205px"
		}, "fast")
		.animate({
			height: "200px"
		}, "fast");
		jQuery(".fa_panel_button").toggle();
		jQuery("p.ClassSchedulesMoved").toggle();
		
	
	});	
	
	
	jQuery("p.ClassSchedulesMoved").click(function(){
		jQuery("div#panel").animate({
			height: "205px"
		}, "fast");
		
		jQuery(".fa_panel_button").toggle();
		jQuery("p.ClassSchedulesMoved").toggle();
	
	});	
	
	
	
	
	
	
   jQuery("div#hide_button").click(function(){
		jQuery("div#panel").animate({
			height: "0px"
		}, "fast");
		
	
   });	
   
   
  jQuery("p.#hide_scheduletext").click(function(){
		jQuery("div#panel").animate({
			height: "0px"
		}, "fast");
		
	
   });	
	
});

//jQuery