Width of div using css('width')

Width of div using css('width')

Trying to get width, for simgwd (line #5), but keep getting NaN.  I believe something has changed w/ jquery 1.8.
Can someone explain how I'm supposed to write this.

  1.  $('[id^="order"]').each(function() {
  2.    var simginitdisp = $(this).filter('[class^="searcher_stack-its_img"]').css('width');
  3.    var simgwd = parseFloat(simginitdisp);
  4.    console.log('Search Img Width: ' + simgwd);
  5.    if (simgwd > 0) {
  6.      console.log('Search Img Present');
  7.      var contwd = $(this).next('[class^="searcher_stack-its_stacks"]').outerWidth(true);
  8.      console.log('Content Width: ' + contwd);
  9.      var availwd = $(this).css('width');
  10.      console.log('Avail Overall Width: ' + availwd);
  11.    }
  12.  });

Here's my test page:   http://www.partiproductions.com/searchertest2/index.html


The only search img should be the blue image above "B2 Bold Text Red Border", right now just showing 7 NaN's.

Thanks,  Bill