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