contactClicked = false;function contactCard(){		if (contactClicked==true){				$('.contactCard').animate({				bottom: -150			}, 150, 'easeOutExpo',function(){contactClicked = false;});		}else{			$('.contactCard').animate({				bottom: 41			}, 300, 'easeOutExpo',function(){contactClicked = true;});		}}
