$( document ).ready( function (){
	$('#side').scrollFollow({});
});

//オプション
$( document ).ready( function () {
	$( '#subArea' ).scrollFollow( {
		//アニメーションの速度の設定。0 にするとアニメーションなしになります。
		speed: 500,
		//ブラウザの領域とフロート要素との余白。0にするとぴったりくっつきます。
		offset: 0
	} );
} );
