/*
======================================================
[c!]COLORS -Think Innovation!-
http://www.colors.gr.jp/
info@colors.gr.jp
(C) COLORS Co.,Ltd. All Rights Reserved.
--
Editor			 : CLSMK
Since			 : 2007-11-16
Last Up Date	 : 2008-1-30
Version		 : *
======================================================
fontSizeWide.js
------------------------------------------------------
*/

var perSize = 1;
var sizeUnit = "px";
var reSize = "";


function MM_openBrWindow(theURL,winName,features) { //v2.0
  window.open(theURL,winName,features);
}


function simplePreload()
{ 
  var args = simplePreload.arguments;
  document.imageArray = new Array(args.length);
  for(var i=0; i<args.length; i++)
  {
    document.imageArray[i] = new Image;
    document.imageArray[i].src = args[i];
  }
}


$(function() {

		$("#f_size_Wide").click(
		function() {
			var var_a = $("#fsize_block").css("font-size");
			var var_b = var_a.slice(0,-2);
			var var_c = parseInt(var_b);
			reSize = eval(var_c + perSize);

if(reSize < 26){ reSize = reSize + sizeUnit; }
else{ reSize = 26; }

			$("#fsize_block").css("font-size",reSize);
		});

		$("#f_size_Def").click( 
		function() {
			$("#fsize_block").css("font-size","16px");
		});

		function error_none(){
			return true;
		}
		onerror = error_none;

});
