/*
On page load, set up events for guestbook
*/
$(function(){
	/* Remove the captcha's script element, so that the captcha can be removed without reloading */
	$('#guestbookEdit__guestbookCaptcha script').remove();

	/* Move the guestbook form and update it's ID when you click the reply link */
	$('a.guestbook_reply_link').click( function(event){
		event.preventDefault();
		event.stopPropagation();

		var div = $(this).closest('div.guestbook');
		$('#guestbookEdit__parentId').val(div[0].id.substr(10));
		$(this).after($('#guestbookEdit')[0]);
		return false;
	});

	var nnode = '<input type="hidden" name="jsprep" value="'+wz_pre+'"/>';
	$('#guestbookEdit').append(nnode);

});
