
	
	function ajaxNewDetails()
	{
		projectID = $(this).attr('id').replace(/spinner-/,'');
		type = 'workClients';
		$.ajax({
			type: "POST",
			url: "mainSpinner.php",
			dataType: "html",
			data: {projectID: projectID},
			success: function(html){
				$('#recentWork .inner').hide().html(html).fadeIn('slow');
			}
		});
		return false;
	}


$(document).ready(function(){
	$('.spinner').cycle({
		fx: 'scrollLeft',
		speed: 750,
		timeout: 8000,
		pause: 1,
		next: "#recentWork .controls .next",
		pager:  '#recentWork .controls div',
		before: ajaxNewDetails
	});
});
