var cena = [[250],[600,1500,2500,4000],[720,1800,3000,4800],[900,2250,3750,6000]]; var kombinace = [[0,0],[1,0],[1,1],[2,2],[3,3]]; $(function(){ }); var a = 0; function price_a(i) { a = i; if(a==0) { $('#gt0,#gt1,#gt2,#gt3').attr('checked',false); b = 0; } setprice(cena[a][b]); } var b = 0; function price_b(i) { b = i; setprice(cena[a][b]); } function setprice(p) { $('#price').html(p); if(b==0 && a!=0) $('#gt0').attr('checked',true); if(a==0) $('#ge0').attr('checked',true); } function setCombination(i) { a = kombinace[i][0]; b = kombinace[i][1]; $('#ge'+a).attr('checked',true); if(i==0) $('#gt0,#gt1,#gt2,#gt3').attr('checked',false); if(a!=0) $('#gt'+b).attr('checked',true); setprice(cena[a][b]); } $(function(){ $('textarea[name=poznamka]').focus(function(){ $(this).prev('label').stop(true,true).fadeOut('fast'); }).blur(function(){ if($(this).val()=='') $(this).prev('label').stop(true,true).fadeIn('fast'); }); });