/**컨텐츠만
var font_stresize=12;
function zoom_it(n) {  //zoom_it 함수 => n 만큼 양수는 글꼴을 크게 음수는 작게
font_stresize += n;
  if(n==0){	  
	  //정의된 항목을 삭제한다.
	  jQuery('#total *[zoomconter*=on]').css({"font-size":"","line-height":""});	
  } else {
  //기본 크기(defsize)에 n을 더해서 defsize에 저장
  
	if ($.browser.msie) {
		jQuery("#txt td").css({"font-size":font_stresize+"px"}).attr("zoomconter","on");			
	}
	jQuery("#txt *").each(function(data){		
		//#txt 안의 font-size값을 가져와서 n값을 더한다.
		var font_resize = Number(jQuery(this).css("font-size").replace("px",""))+n;
		//#txt 안의 line-height값을 가져와서 n값을 더한다.
		var line_height_resize = Number(jQuery(this).css("line-height").replace("px",""))+n;
		
		
		//재정의된 값을 입력한다.
		jQuery(this).css({"font-size":font_resize+"px","line-height":line_height_resize+"px"}).attr("zoomconter","on");		
	});	
  }  
}

**/

/**전체**/
var font_stresize=12;
function zoom_it(n) {  //zoom_it 함수 => n 만큼 양수는 글꼴을 크게 음수는 작게
font_stresize += n;
  if(n==0){	  
	  //정의된 항목을 삭제한다.	  
	  jQuery('[zoomconter*=on]').css({"font-size":"","line-height":""});
	  jQuery('[zoomconter*=on]').removeAttr("zoomconter");
  } else {
  //기본 크기(defsize)에 n을 더해서 defsize에 저장
  
	if ($.browser.msie) {
		jQuery("body td").css({"font-size":font_stresize+"px"}).attr("zoomconter","on");	
	}	
	jQuery("body").each(function(data){		
		//#txt 안의 font-size값을 가져와서 n값을 더한다.
		var font_resize = Number(jQuery(this).css("font-size").replace("px",""))+n;
		//#txt 안의 line-height값을 가져와서 n값을 더한다.
		var line_height_resize = Number(jQuery(this).css("line-height").replace("px",""))+n;
		
		
		//재정의된 값을 입력한다.
		jQuery(this).css({"font-size":font_resize+"px","line-height":line_height_resize+"px"}).attr("zoomconter","on");		
	});	
  }  
}
