/* =======================================

	Common JS

========================================== */


/* win/mac
========================================== */
$(function(){
	var UA = navigator.userAgent;
	if(UA.match(/[Ww]in/)) {
		$('body').addClass('win');
	} else if(UA.match(/[Mm]ac/)) {
		$('body').addClass('mac');
	}
});


/* Form Focus
========================================== */

$(document).ready(function() {
	$("form input[type='text'], textarea").focus(function() {
		$(this).addClass("focus");
	});
	$("form input[type='text'], textarea").blur(function() {
		$(this).removeClass("focus");
	});

	$(".submit input[type='submit'], .submit input[type='button']").hover(
	function() {
		$(this).addClass("hover");
	},
	function() {
		$(this).removeClass("hover");
	});
});


/* IE6で砂時計回避
========================================== */
try {
	document.execCommand('BackgroundImageCache', false, true);
}catch(e){}


/* IEでクリッカブルマップの線を消す（ただし、タブでリンクの移動ができなくなる）
=========================================== */
$(function(){
	$('area').focus(function(){ $(this).blur();});
});



