
(function($) {

	$.fn.extend({
		delNivoSlide: function() {
			return this.each(function() {
				$(this).parent().parent().prev().remove();
				$(this).parent().parent().next().remove();
				$(this).parent().parent().remove();
			});
		},
		addNivoSlide: function(id, rec) {
			return this.each(function() {
				$(this).parent().parent().parent().each(function() {
					$(this).append("<tr class=\"no-border\"><th scope=\"row\"><label for=\"" + id + "\">Image URL</label></th><td colspan=\"2\"><input class=\"headway-visual-editor-input\" type=\"text\" name=\"leaf-options[" + id + "][images][" + rec + "][slideurl]\" value=\"\"></td></tr><tr class=\"no-border\"><th scope=\"row\"><label for=\"" + id + "\">Caption Text</label></th><td><input class=\"headway-visual-editor-input\" type=\"text\" name=\"leaf-options[" + id + "][images][" + rec + "][caption]\" value=\"\"></td><td><a href=\"#\" class=\"slideRemove\">Remove</a></td></tr><tr id=\"" + rec + "_slide_link_" + id + "\"><th scope=\"row\"><label for=\"" + id + "\">Link URL</label></th><td colspan=\"2\"><input class=\"headway-visual-editor-input\" type=\"text\" name=\"leaf-options[" + id + "][images][" + rec + "][link]\" value=\"\"></td></tr>");
				});
			});
		}
	});
})(jQuery);

