(function($){
	$.fn.horizontalScrollFix = function(width){
		if(width){
			$(window).resize(function(){
				if ( width > $('body').width()){
					alert("aa");
					$(this).width(width);
				}
			});
		}
	};
})(jQuery);
