$(function() {
	
	$("div.scrollable").scrollable({size:5}).circular();
	//preload gallery images 
	$("ul.items li a").each(function() {
		var newImgPath = $(this).attr("href");
		img = new Image();
		img.src=newImgPath;
	});
	
	
});
