$(document).ready(function() {
  isIE6 = /msie|MSIE 6/.test(navigator.userAgent);


  // ******** IE6 3 Column Layout Fix ********
  if ( isIE6 ) { // Thank you IE6
    $(".leftcontent").width( "310px" );
    $(".centercontent").width( "310px" );
    $(".rightcontent").width( "310px" );
  }
});

