// JavaScript Document
$(document).ready(function(){
	var ng = $("div.ngg-galleryoverview"),
		ng_firstImg = ng.find("div.ngg-gallery-thumbnail a:first").attr("href"),
		ng_count = 1;
	ng.prepend("<div class='ngg-gallery-main-box'>");
	$("div.ngg-gallery-main-box").append("<img src='"+ ng_firstImg +"' alt='' />");
	ng.find("div.ngg-gallery-thumbnail-box").each(function(){
		if(ng_count % 5 === 0){
			$(this).addClass("last");
		}
		ng_count += 1;
	});
	ng.find("div.ngg-gallery-thumbnail a").click(function(){
		var ng_img = $(this).attr("href");
		$("div.ngg-gallery-main-box img").fadeOut(500, function(){
			$("div.ngg-gallery-main-box img").attr("src", ng_img).load(function(){
				$("div.ngg-gallery-main-box img").fadeIn(500);
			});
		});
		return false;
	});
});
	
