
	// Font_Scale Begin 111215 v10 S >>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>
		var
			default_width 	= 1920,
			default_height	= 1080,
			default_ = default_width / default_height,
			fs_min = 0,
			fs_default = 10,
			fs_max = 30,
			agent=navigator.userAgent.toLowerCase(),
			is_iphone = (agent.indexOf('iphone')!=-1);
		function ready_fs() {
			if ( (window_width / window_height) > default_ ) {
			
				fs_width = window_width / (default_width / fs_default);
				if ( (fs_width > fs_min) || (fs_width < fs_max) ) {
					fs = fs_width;
				};
				if (fs_width <= fs_min) {
					fs = fs_min;
				};
				if (fs_width >= fs_max) {
					fs = fs_max;
				};
			}	
			else {
			
				fs_height = window_height / (default_height / fs_default);
				if ( (fs_height > fs_min) || (fs_height < fs_max) ) {
					fs = fs_height;
				};
				if (fs_height <= fs_min) {
					fs = fs_min;
				};
				if (fs_height >= fs_max) {
					fs = fs_max;
				};
				
			};
			/*$('body, table').css(
				{
					fontSize: fs
				}
			);*/
			if (is_iphone) {
				$('body, table').css(
					{
						fontSize: fs
					}
				);
			}
			else {
				$('body, table').stop().animate(
					{
						fontSize: Math.ceil(fs)
					}
				);
			};
			/*$('body, table').stop().animate(
				{
					fontSize: fs
				},
				{
					duration: 500, easing: "easeOutElastic"
				}
			);*/
			
		};
		function resize_fs() {
			ready_fs();
		};
	// Font_Scale End >>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>
	
	// disableTextSelect Begin 110805 v10 S >>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>
		// $(this).disableTextSelect();
		eval(function(p,a,c,k,e,r){e=function(c){return c.toString(a)};if(!''.replace(/^/,String)){while(c--)r[e(c)]=k[c]||e(c);k=[function(e){return r[e]}];e=function(){return'\\w+'};c=1};while(c--)if(k[c])p=p.replace(new RegExp('\\b'+e(c)+'\\b','g'),k[c]);return p}('(0($){7($.8.h){$.4.3=0(){2 1.5(0(){$(1).9({\'a\':\'i\'})})};$.4.6=0(){2 1.5(0(){$(1).9({\'a\':\'\'})})}}b 7($.8.j){$.4.3=0(){2 1.5(0(){$(1).c(\'d.3\',0(){2 e})})};$.4.6=0(){2 1.5(0(){$(1).f(\'d.3\')})}}b{$.4.3=0(){2 1.5(0(){$(1).c(\'g.3\',0(){2 e})})};$.4.6=0(){2 1.5(0(){$(1).f(\'g.3\')})}}})(k);',21,21,'function|this|return|disableTextSelect|fn|each|enableTextSelect|if|browser|css|MozUserSelect|else|bind|selectstart|false|unbind|mousedown|mozilla|none|msie|jQuery'.split('|'),0,{}))
	// disableTextSelect End >>>
	
	// Loading Begin 110714 v10 S >>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>
		var sel_window = $(window), window_width, window_height, screen_width, screen_height;
		$(
			function() {
				screen_width 	= screen.width;
				screen_height = screen.height;
				window_width 	= sel_window.width();
				window_height = sel_window.height();
				$('img, .artslider, a').disableTextSelect();
				ready_fs();
			}
		);
		sel_window.load (
			function() {
				window_width 	= sel_window.width();
				window_height = sel_window.height();
			}
		);
		sel_window.resize (
			function() {
				window_width = sel_window.width();
				window_height = sel_window.height();
				resize_fs();
			}
		);
	// Loading End >>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>
