// Finalmedia 2011
$("document").ready(function() { count=0;
$(".symbols_right").toggle( function () {  $("#main").fadeOut("fast"); $(".impressum").fadeIn("fast");  },function () { $(".impressum").fadeOut("fast"); $("#main").fadeIn("fast"); });
$(".exit").click(function () { $(".symbols_right").click(); });
$(".symbols_left").toggle( function () {  $(".symbols_left").html("&micro;");  }, function () { $(".symbols_left").html("&pi;");  });
$(".card .t").hover( function () {  $(this).addClass('aktiv');  }, function () { $(this).removeClass('aktiv'); });
$(".card .t").click(function() { count=0; $(".imgpanel").css('top','0'); 
$(".card .t").hide("fast"); $(this).parent().children(".imgpanel").show("fast"); 
 }); $(".card .imgpanel img").click(function() { 
infotext=$(this).parent().children(".info").html();
if (infotext!="") { $(".textpanel").html(infotext); $(".textpanel").fadeIn("fast"); }
else { $(".textpanel").html(""); $(".textpanel").css("display","none"); }
count++;  c=$(this).parent().parent().parent();
anzahl=$(this).parent().parent().children().length;
if (count<anzahl) { c.animate({top:'-=244'},300,function() {}) 
} else { count=0; $(".textpanel").fadeOut("fast");
$(".textpanel").html(""); $(".card .imgpanel").fadeOut("fast"); 
$(".card .t").show("fast"); }});
});

