jQuery(document).ready(function($) {
	$('.sticky').wrapAll('<div id="featured-cycle" />');
	$("#featured-cycle").cycle({
		slideExpr: "div.sticky",
		fx: "fade",
		speed: 250,
		next: ".cycle-next",
		prev: ".cycle-prev",
		timeout: 6000,
		pause: 1
	});
	// $(".sticky").css("height", "300px");
	// $("#featured-cycle").after('<div class="clearfix">Test</div>');
	/*
	$("").
	<div id="controls" style="display: none;">
		<a href="#" class="prev">Prev</a>
		<a href="#" class="next">Next</a>
	</div>
	$(".featured").hover(
		function() {
			$(this).find("#controls").stop(true, true).fadeIn();
		}, 
		function() {
			$(this).find("#controls").stop(true, true).fadeOut();
		}
	);
	*/
});
