$(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").attr("src",theNewImg).fadeIn();
		});

		return false;
	});
	
	$(".lightbox").lightBox();
});