/* menuYloc */
var scTop = null;

function stayMenu(top) {
    // menu
    offset = Math.max(305, top + 10);
    offset = Math.min($('#areaMain').height() - 100, offset);
    offset += 'px';
    $('#areaSub').animate({top:offset},{duration:300,queue:false});
}
function stayNavi(top) {
    // navi
    offset = (top + $(window).height() - 450);
	offset = Math.max(500, top);
    offset = Math.min($('#wrap').height() - 450, offset);
    offset += 'px';
    $('#pageTop').animate({top:offset},{duration:300,queue:false});
}


$(document).ready(function(){
if (document.referrer.indexOf('odoipage.com') == -1 && ((navigator.userAgent.indexOf('iPhone') > 0 && navigator.userAgent.indexOf('iPad') == -1) || navigator.userAgent.indexOf('iPod') > 0 || navigator.userAgent.indexOf('Android') > 0)) {
		$('#tel').html('<a href="tel:' + $('#tel').html() + '">' + $('#tel').html() + '</a>');
		$('#areaContact a').attr('href', 'mailto:oodoiyuji?subject=' + encodeURI('xxx'));
		
		$('h1>img').attr('src', 'http://www.hiro51.net/topbn.png').attr('width', '665').attr('height', '217');
		
		$('h2').click(function() {
			$(this).next().slideToggle();
		});
	} else {
		$('img.lazy').lazyload({
			placeholder : "http://www.hiro51.net/white.png",
			effect : "fadeIn"
		});
	}
	// menu
    scTop = $(document).scrollTop();
    stayMenu(scTop);
    stayNavi(scTop);
    $(window).scroll(function() {
        scTop = $(document).scrollTop();
        stayMenu(scTop);
        stayNavi(scTop);
    });
    $(window).resize(function() {
        stayNavi(scTop);
    });
});

