$(document).ready(function() {
	if($("#thumbs").length > 0) {
		$("#big img").fadeIn(2000);
		$("#thumbs img").animate({opacity: 0.5}, 1000);
		$("#thumbs img").click(function(e) {
			$("#thumbs img").removeClass("active").animate({opacity: 0.5});
			$(this).addClass("active").stop().animate({opacity: 1.0}, 500);
			$.get("getobject.php", { id: $(this).attr("id"), typ: typ }, function(data) {
				$("#big").html(data.bild);
				$("#text").html(data.text);
				$("#big img").fadeIn("slow");
				},"json");
			});
		$("#thumbs img:first").addClass("active").animate({opacity: 1.0}, 500);
		$("#navleft").click(function() {
			$("#thumbs img.active").prev("img").click();;
			});
		$("#navright").click(function() {
			$("#thumbs img.active").next("img").click();
			});
		}
	});
