jQuery(document).ready(function($) { 

	
	$('.rotator_slider').scrollable({ circular: true, mousewheel: false, keyboard: false, speed: 500 }).autoscroll({ autoplay: true, interval: 5000 });

//	get access to the jqueryTools API
	
//	var api = $("#guest_slider").data("scrollable");
	
	
/*
	var numGuests = $('.items .chef').length - 4;
	

	// using scrollable API for nav items for smoother scrolling in IE7
	$('a.next').click(function() {
		
		checkNum();
		api.move(4);
	});
	
	$('a.prev').click(function() {
		checkNum();
		api.move(-4);
	});
	
*/
	
}); // STOP JQUERY


