// JavaScript Document
$(document).ready(function(){	
	$("#resource h3").click(function(){
		$(this).next("div").slideToggle("slow");
	});	
});