/* -----------------------------------------

 jquery.linkplus.js
 v1.0
 
 AKIBE
 http://akibe.com/
 
------------------------------------------*/
(function(jQuery) {
	jQuery.fn.scRoller = function() {
		return this.each(function() {
			jQuery(this).click(function() {
				jQuery('html,body').animate({
					scrollTop: jQuery(jQuery(this).attr("href")).offset().top
				});
				return false;
			});
		});
	};
	/*
	jQuery.fn.outerLink = function() {
		return this.each(function() {
			jQuery(this).click(function() {
				window.open(this.href, '_blank');
				return false;
			});
		});
	};
	*/
})(jQuery);

jQuery(function(){
	jQuery('a[href^=#]').scRoller();
	//jQuery('a[href^=http]').not('[href^="http://collcoll.jp"] || [href^="https://member.fanscope.com/"]').outerLink();
});
