// Blocks manipulator
/*
  ** Delete style "#content-column *" (from styles.css) if this
  ** script is disabled!
*/
var blockManipulation = function(){
    box1 = $('#customize');
    box2 = $('#spec_offers');
    content_box = $('#content-column');

    offset = box1.outerHeight()+box2.outerHeight();

    content_box.css({
      'padding-bottom':(offset+'px'),
      'position':'relative'
    });
    box2
    .css({ // this part is need for position reseting (ie6-7)
      'position':'absolute',
      'bottom':'1px'
    })
    .css({
      // correct positioning
      'bottom':box1.outerHeight()
    });
    box1
    .css({// this part is need for position reseting (ie6-7)
      'position':'absolute',
      'bottom':'1px'
    })
    .css({
      // correct positioning
      'bottom':0
    });
    content_box.css({
      'margin-top':'0px'
    });
  }
$(document).ready(function(){
  blockManipulation();
});


