$(document).ready(function() {
 $("a.imgFancybox").fancybox();
 $(".rollover img").hover(
 function()
 {
   this.src = this.src.replace("-normal","-hover");
   $(".rollover img").animate({
   	left: '+=5'
   },100)
 },
 function()
 {
  this.src = this.src.replace("-hover","-normal");
  $(".rollover img").animate({
  	left: '-=5'
  },100)
 }
);
});

