$(function() {
	$(".section").addClass("js");
	
	$(".section .jsShow").click(function() {
		$("div.jsHide").slideToggle();
	});
});