// JavaScript Document
var myAgent = navigator.userAgent;
var whetherVST = myAgent.indexOf('NT 6.0');
var whetherIE = myAgent.indexOf('MSIE');

$(document).ready(function(){				   
	//VISTAの場合のフォントサイズフィッティング//
	(whetherVST >= 0) ? $('body').css('font-size','80%') : null;
});
