$(document).ready(function () {
	$("#tabmenu").tabify();

	$("#prodotherimages img:first").addClass("viewing");
	$("#prodotherimages a").click(function () {
		theNewImg = $(this).attr("href");

		$(".viewing").removeClass("viewing");
		$("img", this).addClass("viewing");

		$("#mainimage").fadeOut(function () {
			$("#mainimage").parent('a.lightbox').attr('href', theNewImg);
			$("#enlargeimage").find('a.lightbox').attr('href', theNewImg);
			$("#mainimage").attr("src", theNewImg.replace("huge", "big")).fadeIn();
		});

		return false;
	});

	$(".lightbox").lightBox({
		imageBtnClose: '/images/lightbox-btn-close.gif',
		imageLoading: '/images/lightbox-ico-loading.gif',
		imageBtnPrev: '/images/lightbox-btn-prev.gif',
		imageBtnNext: '/images/lightbox-btn-next.gif',
		imageBlank: '/images/lightbox-blank.gif'
	});
});
