IE7 boxsizing fix for Foundation3. Use Modernizr to detect.
<script>
if(!($('html').hasClass('boxsizing'))){
$('*').each(function(){
if($(this).css('display')=='block'){
var f, a, n;
f = $(this).outerWidth();
a = $(this).width();
n = a-(f-a);
$(this).css('width', n);
}
});
}
</script>