$(document).ready(function() {
  
  // product hover - change image
  $("#productsList .item a").hover(
    function() {
      $(this).parents(".item").find(".img .one").hide();
      $(this).parents(".item").find(".img .two").show();
    }, 
    function() {
      $(this).parents(".item").find(".img .one").show();
      $(this).parents(".item").find(".img .two").hide();
    }
  );
  
  // product zoom
	$("#productDetail .mainImage a").jqzoom({
	  zoomType: 'reverse',
    zoomWidth: 334,
	  zoomHeight: 398,
    xOffset: 0,
    yOffset: 0,
    position: 'right',
    title: false
  });
  
  // SERIAL SCROLL SLIDER
  $("#productDetail .gallery").serialScroll({
		target: '#galleryIn',
	  items: 'li',
		prev: 'li.prev a',
		next: 'li.next a',
		offset: -192,
		start: 3,
		duration: 600,
		force: true,
		stop: true,
		lock: false,
		cycle: false
	});
	
  // table - even, odd
  $("#productDetail .accordion table tr").each(function(i) { if(i%2==0) $(this).addClass("even"); });
	
  
});
