$(function(){
	
	var pp = $('#logo').pointPoint({"distance":30});
	// To destroy it, call the destroy method:
	// pp.destroyPointPoint();
	
	$("#end").fadeOut(10);
	$("#logo").fadeIn(3000);
	
	$( "#logo" ).click(function() {
	     var options = {};
			$(this).animate({ top: '+=50px',opacity:0}, "slow" );
			pp.destroyPointPoint();
			$("#end").fadeIn(1000);
			$("#end").animate({top:'-200px'},1000);
			
		})
	    
	
	 	
	
});
