
$(document).ready(function(){
	$("#floatieAd").click(function(){
		$("#floatie").fadeOut(1000, function () { 
			$(this).remove(); 
			setSession();
		});
	});
});

function setSession(){
	$.ajax({type:"POST", 
			url:"jaction.php", 
			data: "do=hideFloating&case=true",
			success: function(msg){}				
			
	});
				
}
