/**
 * common.js
 *
 *  version --- 3.6
 *  updated --- 2011/09/06
 */


/* !stack ------------------------------------------------------------------- */
jQuery(document).ready(function($) {
	ScreenChecker();
});

/* !ScreenChecker --------------------------------------------------- */
function ScreenChecker(){
    var ua =navigator.userAgent;
    if(ua.indexOf('iPhone') > -1 || ua.indexOf('iPod')  > -1){
		//iPhone and iPod function
		location.href = 'http://www.akyrise.jp/sp/';
    }
    else if(ua.indexOf('iPad') > -1){
		//iPad function
    }
    else if(ua.indexOf('Android') > -1){
		//android function
		location.href = 'http://www.akyrise.jp/sp/';
    }
	else{
		//PC function
    }
}
