$(document).foundation() $.scaleImg = function(sel, w) { var el = $(sel); el.each(function() { var e = $(this); if (!w) { w = e.width(); } w = Math.ceil(w / 200) * 200; if (e.attr('src')) { e.attr('src', e.attr('src').replace('/480/', '/'+w+'/')); } if (e.css('background-image')) { e.css('background-image', e.css('background-image').replace('/480/', '/'+w+'/')); } } ); } $(function() { var ww = $('#cms').width(); if (ww > 480) { $.scaleImg('.bg-cover'); $.scaleImg('.bild'); $.scaleImg('.orbit-slide img', ww); } });