Stop the Slider in Window Re sizing :
<script>
jQuery(document).ready(function () {
//window ready function
var window_width = jQuery(window).width();
if ( window_width < 400 || window_width == 400 ) {
jQuery('.cycle-slideshow').cycle('pause');
}
});
jQuery(window).resize(function () {
//window resize function
var window_width = jQuery(window).width();
if ( window_width < 400 || window_width == 400 ) {
jQuery('.cycle-slideshow').cycle('pause');
}
});
</script>