window.onscroll = function()

{

	if( window.XMLHttpRequest ) {

		if (document.documentElement.scrollTop > 300 || self.pageYOffset > 300) {

			$('boksi').style.position = 'fixed';

			$('boksi').style.top = '0';

		} else if (document.documentElement.scrollTop < 300 || self.pageYOffset < 300) {

			$('boksi').style.position = 'absolute';

			$('boksi').style.top = '250px';

		}

	}

}
