
function moveToWindowTop(event) {
	alert(this);
	this.style.top = (window.scrollTop + 3) + 'px';
}

function setMoveToWindowTop(id) {
	element = $(id);
	// TODO: this needs to be made to work with IE
//	window.onscroll = moveToWindowTop.bindAsEventListener(element);
}


function fook() {
	alert('scroll');
}
