$(document).ready(function(){
	$('.toggler').each(function(){
		$(this).click(function(){
			toggleboxIDName=$(this).attr('id')+' ul.togglebox';
			$('#'+toggleboxIDName).toggle();
		});
	});
});
