$().ready(function()
{
	$('a.new_row').click(function()
	{
		var anchor = $(this);
		var id = parseInt(anchor.attr('rel'));
		var a_class = anchor.attr('class').split(' ');

		jQuery.get('/employment/employment/'+a_class[0]+'_row/'+(id+1),
		           {},
		           function (data, textStatus)
		           {
		            	anchor.parent().parent().before(data);
		            	anchor.attr('rel', id+1);
		            	$('label.overlabel').overlabel();
		            	return false;
		           });
		return false;
	});

	$('a.delete_row').click(function()
	{
		var anchor = $(this);
		var id = anchor.attr('rel');
		$('.'+id).remove();
		return false;
	});
});

