$(document).ready(function() {

	$('a[href="#"]').click(function(event) {
		event.preventDefault();
		$('body').append("<div class='alert'>Coming soon</div>");
		$('div.alert').fadeIn(500).delay(2000).fadeOut(500);
		setTimeout(function() {
			$('.alert').remove();
			}, 3000);
		});
});
