
$(document).ready(function() {

  // delay to give IE more time to render
  $('#slides-wrapper .slides').delay(300).cycle({
  // speed: 0,
  // timeout: 0,
    fx: 'fade',
    speed: 1500,
    timeout: 4000,
    pause: 1,
    pauseOnPagerHover: 1,
    pager: '#slides-pager',
    slideExpr: '.slide' ,
    pagerAnchorBuilder: function(idx, slide) {
      return '<li><a target="" title="" href="#">' + ++idx + '</a></li>';
    }
  }); 
  //.show(); 
  //.css('visibility','visible');
  
  $('#karusell-wrapper .slides').cycle({
	  // speed: 0,
	  // timeout: 0, 
	     slideExpr: '.slide',
	     fx: 'scrollHorz', 
	     startingSlide: 0,  // start on the slide that was in the markup
	     cleartype: !$.support.opacity, // true if clearType corrections should be applied (for IE) 
	     timeout:  0, 
	     speed:    500, 
	     prev:    '#prev', 
	     next:    '#next'
  });  

});

