window.onload = function(){setScreenSize();};
window.onresize = setScreenSize;

function setScreenSize() {
  var fmt = document.documentElement.clientWidth;
  if (fmt<974) {
    jQuery('#page #main #primary').css('background', '#fff');
    jQuery('#page #main #primary #content').css('width', '90%');
    jQuery('#page #main #secondary').css('clear', 'left');
    jQuery('#page #main #secondary').css('float', 'left');
    jQuery('#page #main #secondary').css('width', '100%');
    jQuery('#page #main #secondary').css('background', '#fff');
    jQuery('#page #main #tertiary').css('clear', 'left');
    jQuery('#page #main #tertiary').css('float', 'left');
    jQuery('#page #main #tertiary').css('width', '100%');
    jQuery('#page #main #tertiary').css('background', '#fff');
  } else {
    jQuery('#page #main #primary').css('background', 'url("/blog/wp-content/themes/twentyeleven-avani/images/bgbd_3cols.jpg") repeat-y scroll center top #6B1E43');
    jQuery('#page #main #primary #content').css('width', '55%');
    jQuery('#page #main #secondary').css('clear', '');
    jQuery('#page #main #secondary').css('float', 'right');
    jQuery('#page #main #secondary').css('width', '15%');
    jQuery('#page #main #secondary').css('background', '');
    jQuery('#page #main #tertiary').css('clear', '');
    jQuery('#page #main #tertiary').css('float', 'right');
    jQuery('#page #main #tertiary').css('width', '20%');
    jQuery('#page #main #tertiary').css('background', '');
  }
}

