/**
*	よく使う動きとかの寄せ集め。
*	必要ライブラリ/prototype/scriptaclous/JSTweener/easing_functions_for_scriptaculous
**/

var UTween = new Object();

//ページのトップに移動。
UTween.toPageTop = function (){
	UTween.scrollTo(document.body);
	
}
UTween.scrollTo = function(evt,element){
	if(Object.isElement(evt))element=evt;
	if(Object.isString(evt))element=$(evt);
	var tweenObj= {transition:Effect.Transitions.easeOutQuint}
	tweenObj.duration = 1.3//.8;
	new Effect.ScrollTo(element,tweenObj);
}