$(function()
{
    $(".body-store-content-product-tabs-tab").click(function()
    {
      $('.body-store-content-product-tabs-tab').removeClass("selected");
      var i = $(this).attr("rel");
      
      $(this).addClass("selected");
      $('.body-store-content-product-tabs-content').hide();     
      
      $('.body-store-content-product-tabs-content').each(function(index)                                                      
      {
        if (index == i)
        {
          $(this).show();
        }
      });
      
      return false;
    });
  
  $('.body-store-content-product-tabs-content:gt(0)').hide();
  
  $('.body-store-content-product-alternateimages-image').click(function()
  {
    $('.body-store-content-product-image > img').attr('src', '/images/product/standard/' + $(this).attr('rel') + '.jpg');
  });
});

