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

	Common Javascript

 -----------------------------------------
	INDEX
 -----------------------------------------
 	1.Mouse Over

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

/* 1.Mouse Over
========================================== */
$(function() {
  var image_cache = new Object();
  $(".swap").each(function(i) {
    var imgsrc = this.src;
    var dot = this.src.lastIndexOf('.');
    var imgsrc_on = this.src.substr(0, dot) + '_o' + this.src.substr(dot, 4);
    image_cache[this.src] = new Image();
    image_cache[this.src].src = imgsrc_on;
    $(this).hover(
      function() { this.src = imgsrc_on; },
      function() { this.src = imgsrc; });
  });
});




$(function() {
	// iPhoneまたは、Androidの場合は振り分けを判断
	if (document.referrer.indexOf('lawiz.net') == -1 && ((navigator.userAgent.indexOf('iPhone') > 0 && navigator.userAgent.indexOf('iPad') == -1) || navigator.userAgent.indexOf('iPod') > 0 || navigator.userAgent.indexOf('Android') > 0)) {
		if (location.href.match('lawiz.net/saimu')){
		    if(confirm('ﾛｲｽﾞ司法書士事務所\nｽﾏｰﾄﾌｫﾝ用ｻｲﾄがあります。\n表示しますか？')) {
    		    location.href = 'http://www.lawiz.net/smart/saimu/';
    		    return;
	    	}
		} else if (location.href.match('lawiz.net/lawiz')){
		    if(confirm('ﾛｲｽﾞ司法書士事務所\nｽﾏｰﾄﾌｫﾝ用ｻｲﾄがあります。\n表示しますか？')) {
    		    location.href = 'http://www.lawiz.net/smart/lawiz/';
    		    return;
	    	}
		} else if (location.href.match('lawiz.net/sagi')){
		    if(confirm('ﾛｲｽﾞ司法書士事務所\nｽﾏｰﾄﾌｫﾝ用ｻｲﾄがあります。\n表示しますか？')) {
    		    location.href = 'http://www.lawiz.net/smart/sagi/';
    		    return;
	    	}
		} else if (location.href.match('lawiz.net/money')){
		    if(confirm('ﾛｲｽﾞ司法書士事務所\nｽﾏｰﾄﾌｫﾝ用ｻｲﾄがあります。\n表示しますか？')) {
    		    location.href = 'http://www.lawiz.net/smart/money/';
    		    return;
	    	}
		} else if (location.href.match('lawiz.net/kibarai')){
		    if(confirm('ﾛｲｽﾞ司法書士事務所\nｽﾏｰﾄﾌｫﾝ用ｻｲﾄがあります。\n表示しますか？')) {
    		    location.href = 'http://www.lawiz.net/smart/kibarai/';
    		    return;
	    	}
		} else {
		    if(confirm('ﾛｲｽﾞ司法書士事務所\nｽﾏｰﾄﾌｫﾝ用ｻｲﾄがあります。\n表示しますか？？')) {
    		    location.href = 'http://www.lawiz.net/smart/';
    		    return;
	    	}
		}
	}
});
