/*
var count = 1;

$(document).ready(function() {

  $(".fullSize").prependTo("#Rotator");
  $(".thumbNail").appendTo(".RotatorThumbnails");

  //$('#Rotator a').not(':first').children("img").hide(); //hide all but first image
  $("#Rotator a img").hide();

  setInterval(beginRotator, 2500);
});

function beginRotator(){
  var images = $("#Rotator a");
  //alert(images.length);
  $(images[4]).fadeIn();	
  $("#Rotator a img").fadeOut('fast', function(){
    $(images[count]).fadeIn('fast');
  });
  count++;
}
*/
