$(document).ready(function()
{
  // Allows switching between tabs on DVD product page.
  
  $('.tab').click(function() {
    var tab = "#" + $(this).attr("id");
    var content = tab + "_content";
    
    $(".tab_content").hide();
    $(content).show();
    
    $(".tab").removeClass("active");
    $(tab).addClass("active");
  });
  
  // Allows video sample switching.
  
  $('.video_sample').click(function() {
    $('.video_sample').removeClass('active');    
    $(this).addClass('active');
  });
  
  // Clear input fields.
  
  /*$('.clear_on_focus').focus(function() {
    $(this).val('');
  });*/
});

