$(document).ready(function(){

	$(document).ready(function(){
		setTimeout(function() { window.scrollTo(0, 1) }, 100);

	$(function() {

	    $('#slideshow').cycle({
	        fx:      'scrollHorz',
			speed:   'slow',
			timeout: 3000,
	    });
	});

		$(function() {
		  var $div = $("#slideshow");
		  var html = $div.html();
		  var checking = setInterval(function() {
		    var newhtml = $div.html();
		    if (html != newhtml) {
		      html = newhtml;
		    }
		  },1500);
		
		});
	});

});

