var Videobox=new Class({width:870,height:645,padding:0,margin:0,embedCode:' <iframe src="http://player.vimeo.com/video/26878855?byline=0&amp;portrait=0&amp;autoplay=1" width="870" height="645" frameborder="0" webkitAllowFullScreen allowFullScreen></iframe>',initialize:function(image){this.image=image;this.image.setStyle("cursor","pointer");this.image.addEvent("click",this.imageClick.bind(this));this.contentEl=new Element("div");$(document.body).grab(this.contentEl);this.minibox=new Minibox(this.contentEl,{width:this.width,height:this.height,onCloseFinish:function(){this.contentEl.innerHTML=""}.bind(this)})},imageClick:function(e){if(e){e.stop()}this.contentEl.innerHTML=this.embedCode;this.minibox.open()}});document.addEvent("domready",function(){$$(".movie_graphic").each(function(image){new Videobox(image)})});

