jQuery(document).ready(function(){
	jQuery('.toggler').click(function(event){
		id = event.target.id;
		content = '#' + id + '_content';
		jQuery('.togglable:not("' + content + '")').hide('slow'); // Close all other fields
		jQuery(content).toggle('slow'); // Toggle content field with matching id
		return false; // Deactivate link (if it is one)
	});
});