// JavaScript Document
$(document).ready(function(){
						   
		/*-------- ブロック要素のロールオーバー ---------------*/
		$(".shopThumb").click(
						function(){
							$(this).css({border: "1px solid #cacaca"});
							window.open($(this).find("a").attr("href"), "_self");
						}
		);
		
		$(".shopThumb").hover(
						function(){
								$(this).css({border: "1px solid #ff9c00"});
								$(this).css({cursor: "pointer"});
								window.status = $(this).find("a").attr("href");
								return true;
							},
						function(){
								$(this).css({border: "1px solid #cacaca"});
						}
		);
		
		/*-------- スムーズにページ内リンク ---------------*/
		$("a[href^='#']").click(
						function(){
							//var duration = parseInt($(this.hash).offset().top) / 10;
							//alert(duration);
							$("html, body").animate({scrollTop: $(this.hash).offset().top}, 250, "swing");
							return false;
						}
		);
		
		
		/*-------- shopカテゴリメニューのロールオーバー ---------------*/
		/*$(".section a img").hover(
					 function(){
						$(this).animate({opacity: 0.4}, "250", "");
					},
		
					 function(){
						$(this).animate({opacity: 1}, "100", "");
					}
		);*/
});
