// JavaScript Document
$(document).ready(function(){
						   
		/*-------- ブロック要素のロールオーバー ---------------*/
		/*$(".blogList").click(
						function(){
							$(this).find("h2").css({background: "#000000"});
							window.open($(this).find("a").attr("href"), "_self");
						}
		);
		
		$(".blogList").hover(
						function(){
								$(this).find("h2").css({background: "#424242"});
								$(this).css({cursor: "pointer"});
								window.status = $(this).find("a").attr("href");
								return true;
							},
						function(){
								$(this).find("h2").css({background: "#000000"});
						}
		);*/
		
		/*-------- スムーズにページ内リンク ---------------*/
		$("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;
						}
		);
		
});
