$(function() {
  $('.product-gallery .normal-image').fancybox({
    'transitionIn' : 'elastic',
    'transitionOut' : 'elastic',
    'easingIn' : 'easeOutBack',
    'easingOut' : 'easeInBack'
  });
  
  $('.product-gallery ul li a').click(function() {
    var $this = $(this)
    var $normal_image = $this.parents('.product-gallery').find('.normal-image');
    var $current_image = $normal_image.find('img')
   
    $current_image.remove();
   
    var $img = $('<img />');
    $img.load(function() {
      var $this_img = $(this);
      $this_img.appendTo($normal_image);
    });
    
    $normal_image.attr('href', $this.attr('rel'));;
    $img.attr('src', $this.attr('href'))
    
    var id = $this.parents('li').attr('id').replace('rod_gallery_image_', '')
    $('.images-text p').addClass('hidden');
    $('.images-text .image-text-'+id).removeClass('hidden');

    return false;
  })
})
