jQuery(document).ready(function($){

	// control botton fadein-out
	$('.btn01').hover(
		function () {
			$(this).stop().fadeTo(500, 0.0);
		},
		function () {
			$(this).stop().fadeTo(500, 1.00);
		}
	);

	// checks if a client browser supports a given font
	if($.os.name == 'mac') {
		if($.fontAvailable('MS P Gothic')) {
			// no action
		}else{
			$('body').css({letterSpacing:'-0.2em'});
		}
	}

});

