var menuVTD, scrollMaxH;
$().ready(function() {
	scrollMaxH=$('body').height()-$('body table:first table:first tr:nth(1) td').height();
	menuVTD=$('body table:first table:first tr:first td');
	window.onscroll=function() { menuVTD.clearQueue().animate({ height: [ Math.min(document.body.scrollTop+130, scrollMaxH), 'swing' ] }, 0) }
});
