/*リクルート別ウィンドウ用*/
function disp(url){ 
window.open(url, "linkname", "width=1000px,height=780px,menubar=yes,location=yes,status=yes,toolbar=yes,scrollbars=yes"); 
} 

/*ロールオーバー用*/
function rollover( imgObj , imgURL ) {
	imgObj.src = imgURL;
} 

/* メインメニュー用？ */
$(function() {
	$('#nav').droppy();
});

/* エレヴェータ関数本体 */
function elevator() {
	if( typeof( m ) != 'undefined' ) clearTimeout( m );
	/* オブジェクトのIDセレクタ */
	var d = document.getElementById( 'elevator_block' );
	var t = document.documentElement.scrollTop || document.body.scrollTop;
	var t2 = d.offsetTop;
	/* 下の行でポジション指定 */
	var o = $e( d, ['810px',t2+'px'], ['810px',(t+170)+'px'] );
	/* 作者さんのページの説明を読んで、変更したいならパラメタを変更 */
	window.m = setTimeout( function() {
		o.easing(100).move();
	}, 100 );
}

/* スクロールトリガ */
window.onscroll = elevator;


