$(document).ready(
	function() {
	
	
	// Motion Image Cycle

		// Show slides ul
			$("#motion ul#slides").show();

		// Change background image to blank slate
			$("#motion").css({"background":"none"});

		// Initiate image cycle
			$('#motion ul#slides').cycle();

	
	}
);



