/**
 * Wmdbtable is the CMS javascript basic class for the Wmdbtable module
 *
 * ==Changelog==
 *
 * @since Thu Dec 11 2008
 * @author Nick van der Zwet
 **/
var Wmpagebannerfitlabel = Class.create();
Wmpagebannerfitlabel = Class.extend(Wmdbtable, {
	/**
	 * ajaxUpdate
	 *
	 * Marks the ajax call as done
	 *
	 * @since Fri Apr 18 2008
	 * @access public
	 * @param domnode response
	 * @response void
	 **/
	ajaxUpdate: function(response) {
		this.__parent.ajaxUpdate(response);
		document.location.reload();
	}
});
