jQuery(document).ready(function() {
  jQuery('.dog-man-strapline').html('<span id="watch_video"><img src="/_template/images/watch_video.jpg" alt="Click to watch The Dog Man" width="158" height="110" /></span>');
  jQuery('<div id="video_container" style="display: none;">&nbsp;</div>').appendTo('.the-dog-man');
  jQuery('#watch_video').css('cursor', 'pointer');
  jQuery('#watch_video').click(function() {
    var cssObj = {
      'height' : '430px',
      'width' : '942px',
      'background' : '#000',
      'position' : 'absolute',
      'top' : '134px',
      'z-index' : '999999',
      'text-align' : 'center'
    }
    jQuery('#video_container').css(cssObj);
    
    jQuery("#video_container").animate({
      "height": "toggle",
      "opacity": "toggle"
    }, {
      duration: "slow",
      complete: function() {
        jQuery('#video_container').html('<div style="margin-top: 20px; position: relative;"><div id="video_close" style="position: absolute; top: 10px; right: 10px; width: 30px; height: 30px;"><img src="/_template/images/video_close.jpg" width="29" height="29" alt="Close Video" style="cursor: pointer;" /></div><object width="640" height="385"><param name="movie" value="http://www.youtube.com/v/5uB6uu9vXOc?fs=1&amp;hl=en_GB&amp;rel=0"></param><param name="allowFullScreen" value="true"></param><param name="allowscriptaccess" value="always"></param><embed src="http://www.youtube.com/v/5uB6uu9vXOc?fs=1&amp;hl=en_GB&amp;rel=0" type="application/x-shockwave-flash" allowscriptaccess="always" allowfullscreen="true" width="640" height="385"></embed></object></div>');
        jQuery('#video_close img').click(function() {
          jQuery("#video_container").animate({
            "height": "toggle",
            "opacity": "toggle"
          });
        });
      }
    });
  });
});
