// $(function() {	
// 	$('.toggles').hide();
// 	$('h6.toggle').toggle(
// 		function() {
// 			$(this).next('div.toggles:eq(0)').slideDown('normal');
// 		},
// 		function() {
// 			$(this).next('div.toggles:eq(0)').slideUp('normal');
// 		}
// 	});
// });


;(function($) {
	$.fn.clickOpen = function(options) {
		var defaults = {  };
		var options = $.extend(defaults, options);

		$('.toggles').hide();

		return $(this).each(function() {
			var e = $(this);
			e.css({cursor: 'pointer'}).toggle(
				function() {
					$(this).next('div.toggles:eq(0)').slideDown('normal');
				},
				function() {
					$(this).next('div.toggles:eq(0)').slideUp('normal');
				}
			);
		});
	};
})(jQuery);

$(function() {
	$('.toggle').clickOpen();
});
