(function($){
	$.fn.autoW = function(){
		return this.each(
			function(){
				leftSideW = $('.left_side').width();
				monitor = $(document).width();
				rightSideW = monitor - leftSideW-50;
				$('.right_side').width('60%');
			}
		);
	}
})(jQuery);