jQuery(function($) {
	$(".left_swap").click(function (){
		$(".left_side").toggle();
		return false;
	});
})