function close_div(){

    $("#close_trigger").click(function (){
    	$("#wrapper").animate({
	    	marginTop: parseInt($("#top_bit").height()) * -1
	    }, function(){
	    	down = false
	    })
    })

}