$(document).ready(function(){
	$(".defunk").click(function(){
		$(this).fadeOut('Slow',function(){
			$(this).text('coming soon',function(){
				
			});
			$(this).css('background','#CDD45A');
			$(this).fadeIn('Slow');
		});				
		return false;
	});
});