$(document).ready(function() { //when the document is ready

	jQuery(document).ready(function ($) {
		if ($(".cycle .slides").length > 0) {
			$(function () {
				$(".cycle .slides").cycle({
					fx: "scrollHorz",
					timeout: 7000,
					pause: "true",
					next: ".cycle-next a", 
					prev: ".cycle-prev a"
				});
			});
		}
	});

});
