function EB_Form()
{
/*
	this.login = function(sUsername, sPassword) {
		$.post("/login/submit", { username: sUsername, password: sPassword },
			function(data){
				$('#widget_login').html(data);
			}
		);
	}
*/

/*
	this.refresh_EB_Forms = function() {
		$(".eb_form").each(function(i) {
			var sFormKey = $(this).attr('id');
			$.post("/form/show/" + sFormKey, 
				function(data){
					$('#' + sFormKey).html(data);
				}
			);

		});
	}

	this.refresh_EB_Forms();
*/
}
