
/* - accordion.js - */
jq(document).ready(function(){
	jq('h6').click(function() {
		$(this).next().toggle('slow');
		return false;
	}).next().hide();
});

