//gallery
$(function(){
	var $links = $('.carousel  li a');
	$links.preload({ threshold:2 });
	$('#aqua-gallery').jGallery({
		viewerClass : 'viewer rc10'
	});
});	

//treatments
$(function() {
	var treatments = $(".treatments");
	if(treatments.children(".long-block").size() > 1) {
		setTimeout(caurusel, 10000);
	}
	function caurusel() {
		var curr = treatments.children(".long-block:visible");
		var next = curr.next(".long-block").size() ?
					curr.next(".long-block") : treatments.children(".long-block:first");
		curr.fadeOut("slow", function() {
			next.fadeIn("slow", function() {
				setTimeout(caurusel, 10000);
			});
		});
	}
});
