// JavaScript Document

jQuery.noConflict();

(function($) { 
	$(function() {
		// jquery scripts run inside noconflict construct for silverstripe compatibility
	
		$(document).ready(function(){
			$(".courseContent").hide();					   
			$(".courseTitle").click(function(event){			
				$(this).next().slideToggle();
			});
			
			$("#mailing-list-form-content").hide();					   
			$("#mailing-list-form-heading").click(function(event){			
				$(this).next().slideToggle();
			});
		});	
	});
})(jQuery); 