/**
 * @author Mike
 */
$(document).ready(function(){
	$(".floatBanner").click(function(){
		$(this).slideUp('slow');
	});
});

