$(document).ready(function() 
{
	$("#image-gallery .thumbnails li:first").addClass("active");

	$("#image-gallery .thumbnails li a").click(function() {
		$("#image-gallery .large-image").hide();
		$("#image-gallery .large-image"+$(this).attr("href")).show();
		$("#image-gallery .thumbnails li.active").removeClass("active");
		$(this).parent("li").addClass("active");
		return false;
	});
});
