jQuery(function($){
						   
	var pageH = $("html,body").height();
						   
    $("#dangerBtn").click(function(){
		$(".entryBox").animate({ backgroundPosition:'(-550px bottom)'},2000,"easeInBounce", function() {
        $("#rocketNaviCont").animate({ marginTop: -(pageH) },2500,"easeInCubic"),
        $("#fire").animate({ opacity: 1 },1000,"easeInCubic"),
        $("html,body").animate({ scrollTop: 0 },2500,"easeInCubic");
			return false;
		});
    });
});

