$(document).ready(function(){
	setContent();
	
	$(".a_select").change(
		function() {
			var uid = $(this).attr("id").replace(/s_/,"");
			$(".a_year").hide();
			$("#c_"+uid+"_"+$(".a_select").val()).show();
			$(this).blur();
		}
	);
	
	$(".a_item").click(
		function() {
			$("#a_detailcover").show();
			$("#a_maincontent").html();
			$("#a_maincontent").hide();
			$("#a_detailcontent").show();
			$("#a_detailloading").show();
			var idarr = $(this).attr("id").split("_");
			id = idarr[0].replace(/ITEM/,"");
			$("#a_maincontent").load('index.php?id=4&eID=user_ausstellung&uid='+id, function() {
				$("#a_maincontent").show();
				$("#a_detailloading").hide();
			});
		}
	);
	
	$("#a_detailcover").click(
		function() {
			$("#a_detailcontent").hide();
			$("#a_detailcover").hide();
		}
	);
	
});

window.onresize = setContent;

function setContent() {
	var winheight = $(window).height();
	var winwidth = $(window).width();
	var cheight = winheight-180;
	$("#contentwrapper").css("height",cheight+"px");
	$("#contentwrapper2").css("height",cheight+"px");
	$("#a_detailcontent").css("left",((winwidth/2)-240)+"px");
	$("#a_detailcontent").css("top",((winheight/2)-240)+"px");
	$("#a_detailloading").css("left",((winwidth/2)-16)+"px");
	$("#a_detailloading").css("top",((winheight/2)-16)+"px");
	$("#allwrapper").css("height",winheight+"px");
}
function showEnlargehint() {
  $('#enlarge').show();
}
