﻿$(document).ready(function() {

	var _thumbnailCount = 5;
	
	$("#modGallery1").scrollable({
		size: _thumbnailCount,
		clickable: true
	});

	$('.modGallery1Thumb img').each(function() {
		$(this).click(function() {
			$('.imgGalleryLarge').attr('src', $(this).attr("src").replace("_thumb.jpg", ".jpg"));
			$('.txtGallery1').html($(this).attr("alt"));
		});
	});

	$('.modGallery1Thumb img:first').click();
});