$(function(){
	
	function ttClientHeight2(){
        return document.documentElement.clientHeight;
    };
	function ttScrollTop2(){
        return document.documentElement.scrollTop?document.documentElement.scrollTop:document.body.scrollTop;
        };
	function topnow2()
	{	document.getElementById("onlinebox").style.top =  ttScrollTop2() + ttClientHeight2()-$("#onlinebox").height()-200 +"px"};
	
	$(window).scroll(function(){topnow2();});
	
    $(window).load(function(){
       $("#onlinebox").slideDown("slow");
		topnow2();
    });

	
})

