$(function(){
		   
	/* サムネイルのオンマウス効果 
	$(".cbox").hover(function(){
		$(this).css("opacity", "0.2");
		$(this).css("filter", "alpha(opacity=20)");
		$(this).fadeTo("slow", 1.0);
	})
	*/
	
	/* スムーズスクロール */
	$(".toTop a").click(function(){
		$('html,body').animate({ scrollTop: $($(this).attr("href")).offset().top }, 'slow','swing');
		return false;
	})
	
});

