I've got this code:
$(function(){
var wysproj = $(window).height() * 0.8;
$(".projekt").click(function(){
$(this).addClass('klikniety').addClass('nogray').animate({height: wysproj}, { duration: 800, queue: false }).children(".home2").animate({height:"70%"}, { duration: 800, queue: false }).children(".slide").animate({height:"100%"}, { duration: 800, queue: false });
$(this).children(".opis").css({display:"block"});
$(".projekt").not(this).animate({height:"200px"}).removeClass('nogray').removeClass('klikniety').children(".home2").animate({height:"200px"}).children(".slide img").animate({height:"200px"});
});
});
When you click on .projekt it's getting zoom, and when you click another .projekt the rest is resizing to default.
How do i write it so that first, the previous .projekt will be scaled to default, and then the new, clicked one will zoom?