function showMovie(e) {
    var videoDiv = $('movie');
    $("player").hide();
    videoDiv.show();
    videoDiv.style.opacity = 0.1;
    videoDiv.style.left = "" + 0 + "px";
    videoDiv.style.top = "" + 0 + "px";
    videoDiv.style.width = "195px";
    videoDiv.style.height = "130px";
    new Effect.Morph('movie',{duration:0.5,style:{width:'720px',height:'500px',top:'-280px',left:'-580px',opacity:'1.0'},afterFinish: function() {
        $("player").show();
    }});
    e.stop();
}

function hideMovie(e) {
    var videoDiv = $('movie');
    $('player').hide();
    new Effect.Morph('movie',{duration:0.5,style:{width:'195px',height:'130px',top:'0px',left:'0px',opacity:'0'},afterFinish: function() {
        $('movie').hide();
    }});
    e.stop()
}

document.observe('dom:loaded',function() {
    $("video-preview").observe("click",showMovie);
    $("close").observe("click",hideMovie);
});