$(function(){
	
	$('div.content div.item').css('cursor', 'pointer').bind('click', function(){
		$(this).toggleClass('opened');
		if ( $(this).hasClass('opened') ) {
			$(this).next().show();
		}
		else {
			$(this).next().hide();
		}
	});
	
});
