$(function()
{
	$('.toggler').parent().click(function(e)
	{
		$(this).toggleClass('visible').next().toggle();
		
		return false;
		
	}).css('cursor', 'pointer');
});
