jQuery(document).ready(function() {
	jQuery("#thumbs").jcarousel({
		itemVisible: 8,
		itemScroll: 1
	});
});
$(document).ready(function() {
	$('a').each(function() {
		if (this.getAttribute('href') && (this.getAttribute('rel') == 'slide')) {
			this.onclick = function () {
				$("#slide").toggle();
				$("#slide").load("image.php",
					{path: this.href},
					function() {
					$("#slide").fadeIn("slow");
				});
				return false;
			}
		}
	});
});
