// JavaScript Document
$(document).ready(function(){

	$("li.category > strong").click(function(e){
		$(".course_list > li.category > div").each(function(e){
			if($(this).css("display") != 'none')
			$(this).hide('slow');
		});

		if ($(this).parent().find("div").css("display") != 'none'){
			$(this).parent().find("div").hide('slow');

		}else{
			$(this).parent().find("div").show('slow');
		}
		e.preventDefault();
	});
});
