/*
* under.js
*
* - jquery-1.12.2
* - 下層ページ用のjs
*/

$(function(){
	if(_ua.Mobile == true){
		Util.smartImage('.smart_img');
		shh = $('#subheader').outerHeight() - 10;
		$('.subheader_menu').css('top',shh+'px');
		
		$('.subheader_menu_btn').on('click',function(e){
			e.preventDefault();
			$('.subheader_menu').slideToggle();
		});
		$('.subheader_menu a').on('click',function(e){
			$('.subheader_menu').hide();
		});
	}
});