// Blocks manipulator
/*
  ** Delete style "#content-column *" (from styles.css) if this
  ** script is disabled!
*/
$(document).ready(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({
    'position':'absolute',
    'bottom':box1.outerHeight()
  });
  box1.css({
    'position':'absolute',
    'bottom':0
  });
  content_box.css({
    'margin-top':'0px'
  });
});

