$(document).ready(function() {
	
	/* Toggle Course Description */	
	$('div.course-information').click(function() {
		$(this).next('div.course-description').toggle(300);
	});
	
	$('div.show-all').click(function() {
		if( $('div#'+this.id+' .hide').is(":visible") == true ){
			$('div#'+this.id+' .hide').hide();
			$('div#'+this.id+' .show').show();
			$("#block_"+this.id+" div.course-description").slideUp('normal');
		} else {
			$('div#'+this.id+' .hide').show();
			$('div#'+this.id+' .show').hide();
			$("#block_"+this.id+" div.course-description").slideDown('normal');
		}
	});
		
	/* Hides course descriptions and hide button on page load */
	$("div.course-description").hide();
	$("div.show-all .hide").hide();
	
 
});