jQuery(document).ready(function() {

        var c=0;
        var destW=90;

        jQuery('.produkt_start .mb img').each(function (i,val) {
          if (i>0) {

            var ratio=val.height/val.width;
            val.width=destW;
            val.height=destW;//parseInt(ratio*val.width);

            val.src="/image.php?size="+destW+"&src="+val.src;
          }
        });

        jQuery('.produkt_start .imageDiv').each(function (i,val) {
          if (i>0) {
          jQuery('.imageDiv:eq('+i+')').css({'width':destW+'px','float':'left','margin-right':'15px'});
          }
        });


        destW=125;
        jQuery('.bilduebersicht .mb img').each(function (i,val) {
            var ratio=val.height/val.width;
            val.width=destW;
            val.height=destW;//parseInt(ratio*val.width);

            val.src="/image.php?size="+destW+"&src="+val.src;
        });

        jQuery('.bilduebersicht .imageDiv').each(function (i,val) {
          jQuery('.imageDiv:eq('+i+')').css({'width':destW+'px','float':'left','margin-right':'15px'});
        });


});

