// Extending this silly thing so the form acually works.
Object.extend(lightbox.prototype, {
	insert: function(e){
	   link = Event.element(e).parentNode;  
	   var myAjax = new Ajax.Request(
			  link.href,
			  {method: 'post', parameters: Form.serialize('form'), onComplete: this.processInfo.bindAsEventListener(this)}
	   );
	   
	   Element.remove($('lbContent'));
	 
	}
});