//var $J = jQuery.noConflict();
var SetSize=function(what){
  var els=$(what);
  maxH=0;
  for (i=0;i<els.length;i++){
    h=$(els[i]).height();
    if (h>=maxH) maxH=h;
  }
  $(what).height(maxH);

}

jQuery(document).ready(function(){

        jQuery('a.lightbox').lightBox({resizeToWindow: true});
        $('#price').cornerz({radius: '13'});
        $('#list a').cornerz({radius: '5', background: '#e8e8e8'});
        $('#choose').cornerz({radius: '5'});
        $('.add').cornerz({radius: '5'});
        $('.btn').cornerz({radius: '5'});
        $('.choice').cornerz({radius: '5'});

        SetSize('.goods .moz');
        SetSize('.goods .moz .itemName');
        SetSize('#news_in .moz');

        $('a[class="add basket"]').click(function(){
           $(this).css({background:'#aaa'});
           $.ajax({
             type: "POST",
             url: "/"+LANG+"/basket/sendvalues/add/",
             data: 'id='+$(this).attr('id'),
             success: function(html){
               $('#Submit').html(html);
             }
           });
        });

});

$(window).resize(function(){

});

