$(document).ready(function(){

    $('#rotation').cycle({fx: 'fade', timeout:5000, speed:1000});
    $('#rotation img').click(function (){
      document.location.href = $(this).attr('rel');
    }).css('cursor', 'pointer');
    
});