

$(document).ready(function()
{   
   
   //cargamos el sudo con thumbs y parando en mouseover
   var oldt = 0;
   var sudoSlider = $("#slider").sudoSlider({ 
      customLink: '.custom',
      prevNext:false,
      auto:true,
      fade: true,
	  pause:6500,
      updateBefore:true
	}).mouseenter(function() {
          auto = sudoSlider.getValue('autoAnimation');
          if (auto){sudoSlider.stopAuto();}
          else{autostopped = true;}
       }).mouseleave(function() {
		  sudoSlider.startAuto();
				
          });
   
	
	
	
});
