var HT = window.HT || {};

HT.Movie = (function($) {
    var init = function() {
        $('a.movie_open').click(function(event) {
            event.preventDefault();
            $('div#movie_overlay').show();
            $('div#movie_content').show();
            $('div#movie_content').append('<a href="/" id="movie_close_button" class="movie_close">X</a><object style="height: 390px; width: 640px"><param name="movie" value="http://www.youtube.com/v/JCTqGlK-iQY?version=3&autoplay=1"><param name="allowFullScreen" value="true"><param name="allowScriptAccess" value="always"><embed src="http://www.youtube.com/v/JCTqGlK-iQY?version=3&autoplay=1" type="application/x-shockwave-flash" allowfullscreen="true" allowScriptAccess="always" width="640" height="390"></object>');
        });
        $('a.movie_open').hover(
	      function() {
	          $('a.movie_open').toggleClass('movie_open_hover', true);
	      },
	      function() {
	          $('a.movie_open').toggleClass('movie_open_hover', false);
	      }
	    );
        $('.movie_close').live('click', function(event) {
            event.preventDefault();
            $('div#movie_overlay').hide();
            $('div#movie_content').hide();
            $('div#movie_content').empty();
        });
    };
    return {
        init: init
    };
} (jQuery));

