Previewer = function(){
    this.previewers = $(".preview");
    
    var swf = document.getElementById("flash_movie");


    this.init = function(){
        
        this.remappPreviewsClicks();
    };

    this.remappPreviewsClicks = function(){
        this.previewers.each(function(index, preview){
            var videoLink = $(preview).find("a");

            videoLink.bind("click",function(){

            swf.sendEvent("LOAD", this.href);
            swf.sendEvent("PLAY", "true");
            return false;
         })


        });

    };


}


