/**
 * @author Ryan Johnson <ryan@livepipe.net>
 * @copyright 2007 LivePipe LLC
 * @package Control.Modal
 * @license MIT
 * @url http://livepipe.net/projects/control_modal/
 * @version 2.2.3
 */

if(typeof(Control) == "undefined")
	Control = {};
Control.Modal = Class.create();
//Object.extend(Control.Modal,{});
Object.extend(Control.Modal.prototype,{
	initialize: function(element,options){
		this.element = $(element);
		this.options = {
			image: false
		};
		Object.extend(this.options,options || {});
		$(element).writeAttribute({target: '_blank'});
	}
});
