var fixedWidth = 950; // Set this value for the current fixed width (in pixels) for your site.
$(document).ready(function(){ setWidth(fixedWidth); });
$(window).resize(function() { setWidth(fixedWidth); }).load(function() { setWidth(fixedWidth); });
var setWidth = function(fixedWidth) { var width = $(window).width(); if (width < fixedWidth) { $(".tbe_wrapper").width(width); } else { $(".tbe_wrapper").width(fixedWidth); } }