/**
 * standard page actions
 */
var oPage = {

    init: function()
    {
        if ($("dont_see_movie_link")) {
            Event.observe($("dont_see_movie_link"), "click", oPage.toggle_dont_see_movie_div);
        }
    },
        
    /**
     * showing and hiding the dont see movie div on the video page
     */
    toggle_dont_see_movie_div: function()
    {
        if ($("dont_see_movie_div").visible()) {
            Effect.Fade("dont_see_movie_div", {duration: 0.3});
        } else {
            Effect.Appear("dont_see_movie_div", {duration: 0.3});
        }
    }

}

Event.observe(window, "load", oPage.init);