$(document).ready(function()
{

	$(".toggler").click(function ()
	{
		var el = "#" + $(this).attr("id").replace('toggle-','');
		$(el).toggle();

		if ($(this).html() == 'Edit'){
			$(this).html('Cancel');
		}
		else {
			$(this).html('Edit');
		}

		return false;
	});

});
