$(document).ready(function() { 
   $('#slider').s3Slider({ 
      timeOut: 3000 
   });
   
   
   $('.sliderImage').each(function(){     
     if( $(this).attr('rel') ) {
       $(this).css('cursor','pointer');
       $(this).click(function(){window.location = $(this).attr('rel');});
     }       
       
   });
});



