$(function(){
	$("#floatBannerArrow").click(function(){
		$("#floatBannerBoxIn").fadeIn("slow");
		$(this).fadeOut("slow");
	});
	$("#floatClose").click(function(){
		$("#floatBannerBoxIn").fadeOut("slow");
		$("#floatBannerArrow").fadeIn("slow");
	})
});

