$(document).ready(function() { 	

	$("#gallery").scrollable({
		size:7					   
	});
	
	$(".scrollable img").click(function() {
		src = $(this).attr("src").replace("/thumbs","");
		$("img.featimage").fadeOut(250, function() {
			$(this).attr("src",src);
			$(this).load(function() {
				$(this).fadeIn(250);
			});
		});
		$("#img .title").html($(this).attr("title").replace("/ ","<br />"))
	});

});
