jQuery(function($){
$(function(){
	/***********************************************
	//pagemove 									   //
	************************************************/
	$(".pagetop > a").live("click" , function(){
		$(this).blur();
		$('html,body').animate({ scrollTop: 0 }, 'slow');
		return false;
	});

	/***********************************************
	//ロールオーバー				   //
	************************************************/

	$(function(){
		$('a > img').hover(function(){
			$(this).css({"opacity":"0.8"});
		},function(){
			$(this).css({"opacity":"1.0"});
		}).click(function(){
			$(this).css({"opacity":"1.0"});
		});
	});


	/***********************************************
	//外部リンクの自動別窓化				   //
	************************************************/

	$(function(){
		$('a').click(function(){
			$('a[href^="http://"]').attr("target","_blank");
		});
		$('.blog_link').click(function(){
			$('a[href^="http://"]').attr("target","_self");
		});
	});

















});
});
