﻿var sCurrentPicture;

$(document).ready(function() {
  sCurrentPicture = $('#main_image').attr('src');

  $('div.pictures img').mouseover(function() {
    var oldPath = $(this).attr('src').split('/');
    var fileName = null;
    var newPath = '';

    for (i = 0; i < (oldPath.length - 2); i++) {
      newPath += oldPath[i] + '/';
    }

    //Determine new path:
    fileName = oldPath[oldPath.length - 1];
    newPath += '300x300/' + fileName;

    $('#main_image').attr({ src: newPath });
  });

  $('div.pictures img').mouseout(function() {
    $('#main_image').attr({ src: sCurrentPicture });
  });

  addProductToRecentViewed($("#productid").val(), $("#imgurl").val(), $("#title").val());

  if ($.jqURL.get('tab') != undefined) {
    toggleTab($.jqURL.get('tab'));
  }
  //$('a[@rel*=lightbox]').lightBox({ overlayBgColor: '#fff', containerResizeSpeed: 1000, fixedNavigation: true });

});

function toggleTab(index) {
  $("#contentTabs div.tab").hide();
  $("#contentTabs div.pictures").show();
  $("#productdetails li").removeClass('active');
  $("#contentTabs div[id=tab" + index + "]").show();
  $("#productdetails li:eq(" + index + ")").addClass('active');
}