jQuery(document).ready(function($) {
	startCycle = $("#main-content").hasClass("slide");
	if (startCycle) {
		$("#main-content.slide")
		.cycle({
			fx:     'scrollHorz', 
		    speed:  'fast', 
		    timeout: 0, 
		    pager:  '#numbers',
			next:   '#next', 
		    prev:   '#prev'
		});

		$("#prev").append("<a href='#'>&nbsp;</a>");
		$("#next").append("<a href='#'>&nbsp;</a>");
	}
});
