var videoBoxActiveElement = null;

$(document).ready(function() {
  $('.video_content')
    .mouseover(function() {
      videoBoxActiveElement = this;
      this.style.background = '#385D8A';
      this.style.cursor = 'pointer';
      topPosition = 0 + $(this).position().top;
      heightValue = 0 + this.clientHeight;
      $('#video_box_play_button').css('top', (topPosition + (heightValue/2) - 18) + 'px').css('display', 'block');
    })
    .mouseout(function() {
      this.style.background = '#4F81BD';
      $('#video_box_play_button').css('display', 'none');
    })
    .click(function() { window.location.href = '/index.php?pg=menu_141&gallery_helper=video&gallery_video_id=' + $(this).attr('id').replace('video_content_', ''); })
    .each(function() {
      if ($(this).height() < 32) {
        $(this).height(24);
	this.style.paddingTop = '11px';
      }
    });
    $('#video_box_play_button').mouseover(function() {
      this.style.display = 'block';
      $(videoBoxActiveElement).css('background', '#385D8A');
      this.style.cursor = 'pointer';
    });
    $('#video_box_play_button').mouseout(function() {
      this.style.display = 'none';
      $(videoBoxActiveElement).css('background', 'none');
    });
});

