
$(function(){

//ブラウザ判定
var _ua = (function(){
return {
ltIE6:typeof window.addEventListener == "undefined" && typeof document.documentElement.style.maxHeight == "undefined",
ltIE7:typeof window.addEventListener == "undefined" && typeof document.querySelectorAll == "undefined",
ltIE8:typeof window.addEventListener == "undefined" && typeof document.getElementsByClassName == "undefined",
ie:document.uniqueID,
firefox:window.globalStorage,
opera:window.opera,
webkit:!document.uniqueID && !window.opera && !window.globalStorage && window.localStorage,
mobile:/android|iphone|ipad|ipod/i.test(navigator.userAgent.toLowerCase())
}
})();
if(_ua.ltIE7){
	$("#iealert").css("display","block");
}

//ニュース読み込み
	$("#news").load("http://www.wakei-seijyaku.jp/site/news_mdc.html?110829");

//店長コメント読み込み
	$("#include_comment").load("http://www.wakei-seijyaku.jp/site/tenchou_com_mdc.html?110829");

//再入荷読み込み
	$("#restock").load("http://www.wakei-seijyaku.jp/site/sai_mdc.html?120215");
	
//カレンダー読み込み
	$("#caltable").load("http://www.wakei-seijyaku.jp/site/calendar_mdc.html?110829");
	
//メルマガバックナンバー読み込み
	$("#mmbninclude").load("http://www.wakei-seijyaku.jp/site/mmbn_mdc.html?120128");


//トップスライダー
	$('#coda-slider').codaSlider({
		autoSlide: true,
		slideEaseFunction: 'easeInOutExpo',
		autoSlideInterval: 6000,
		slideEaseDuration: 1000,
		autoSlideStopWhenClicked: true,
		dynamicArrows: false,
		dynamicTabsPosition: 'bottom'
	});


//メインナビhoverエフェクト
	$("#mainnav li a img").hover(function(){
		$(this).stop().fadeTo(400, 0);
	}, function(){$(this).stop().fadeTo(150, 1);});


//ページ内スクロール
	$('a[href^=#]').click(function() {
		var speed = 700;
		var href= $(this).attr("href");
		var target = $(href == "#" || href == "" ? 'html' : href);
		var position = target.offset().top;
		$($.browser.safari ? 'body' : 'html').animate({scrollTop:position}, speed, 'easeInOutCirc');
		return false;
	});


//本日の店長マウスオーバー
	$("#tenchou_photo img").hover(function(){
		$(this).stop().fadeTo(300,0);
	}, function(){
		$(this).stop().fadeTo(150,1);
	});


});
