// JavaScript Document
var lightboxHover = new Class({
    Extends: Popup,
    initialize: function(adoptElement, _width, _height, _title){
	    this.parent({'title': _title, 'width': _width, height: _height, 'adoptElement': adoptElement});
    },
    
    createPopup: function() {
      this.parent();
    }
});
