/**
 * @author Dom
 */

 $(document).ready(function(){
 	$("#nickelback").mouseover(function(){
		//alert("hey");
		$(this).fadeOut("slow", function(){
			$(this).html("please leave.. you don't belong here")
			.fadeIn("fast")
			.unbind("mouseover");
		});

	});
 });




