$(document).ready(function(){
	$(".close").click(function(){
		$("#nudgeBox").animate({left:"+=10px"}).animate({left:"-5000px"});
		document.getElementById('nudgeBoxText').innerHTML = '';
		document.getElementById('nudgeBox').className = 'nudgeBoxHidden';
	});
	$("#nudgeBox").animate({left:"+=5px"},40).animate({top:"+=5px"},40)
	.animate({top:"-=10px"},40).animate({left:"-=10px"},40)
	.animate({top:"+=5px"},40).animate({left:"+=5px"},40)
	.animate({left:"+=5px"},40).animate({top:"+=5px"},40)
	.animate({top:"-=10px"},40).animate({left:"-=10px"},40)
	.animate({top:"+=5px"},40).animate({left:"+=5px"},40);
});
