		$(document).ready(function (){
			$width=false;
			$(".width").click(function(){
			if($width==false){
				$(".block").animate({width:"80%"}, "slow");
				$(".bg_width").animate({width:"39%"}, 480);
				$("#content").animate({width:"75%"}, "slow");
				$("#footer").animate({left:"29%"}, "slow");
				$("#main").animate({width:"100%"}, "slow");
				$('.width').text('--> <--');
				$width=true;
			} else {
				$(".block").animate({width:"445px"}, "slow");
				$("#content").animate({width:"620px"}, "slow");
				$(".bg_width").animate({width:"1px"}, "slow");
				$("#footer").animate({left:"190px"}, "slow");
				$("#main").animate({width:"968px"}, "slow");
				$width=false;
				$('.width').text('<-- -->');
			}
			});
		});
