/*
 * jQuery confession handler plugin
 *
 *
 * Copyright (c) 2008 Tamas Cser Digismarttech.com
 * All Rights Reserved
 */

;(function($) {
  $.processGuestbook = function(response) {
		$("#guestbookContainer").slideUp();
		$("#guestbookContainer").hide();
		if (response == 0) {
			var html = '<p>Sorry but your message could not be sent at this time.  Please try again later!</p>';
		} else {
			var html = '<p>Your message has been successfully sent!</p>';
		}
		$("#guestbookResponse").html(html);
		$("#guestbookResponse").show();
		$("#guestbookResponse").slideDown();
  }
})(jQuery);
