function showTips(){
	
	$("#over-text").html('@someCoolGuy');
	$("#bubble").html('Use a popular twitter ID');
	
	// $('#over-text').animate({ color: '#999'}, 1000);
	// $('#over-text').animate({ color: '#999'}, 2000);
	// $('#over-text').animate({ color: '#fff'}, 1000, function(){ $("#over-text").html('+1 (555).555.5555'); $("#bubble").html('Try an old number to reconnect.'); });
	// 
	// $('#over-text').animate({ color: '#999'}, 1000);
	// $('#over-text').animate({ color: '#999'}, 2000);
	// $('#over-text').animate({ color: '#fff'}, 1000, function(){ $("#over-text").html('bill@google.com'); $("#bubble").html('Use a client or coworkers email'); });
	// 
	// 
	// $('#over-text').animate({ color: '#999'}, 1000);
	// $('#over-text').animate({ color: '#999'}, 2000);
	// $('#over-text').animate({ color: '#fff'}, 1000, function(){ $("#over-text").html('mykids@email.com/suffix'); $("#bubble").html('Use suffixes to dive even deeper.'); });
	// 
	// $('#over-text').animate({ color: '#999'}, 1000);
	// $('#over-text').animate({ color: '#999'}, 2000);
	// $('#over-text').animate({ color: '#fff'}, 1000, function(){ $("#over-text").html('prospective@client.com/cv'); $("#bubble").html('Use /cv to go strait to a resume.'); });
	// 
	// $('#over-text').animate({ color: '#999'}, 1000);
	// $('#over-text').animate({ color: '#999'}, 2000);
	// $('#over-text').animate({ color: '#fff'}, 1000, function(){ $("#over-text").fadeOut('fast'); $("#bubble").fadeOut('fast'); });
}
	
	
	function showHelp(){

	//	var x = '<div class="index-popup">Try a twitter ID</div>';
	//	$("#form-container").append(x);
	//	$("#index-popup").fadeIn(100);
	//	$("#slogan").fadeOut(2000);
		
	}


	// #1 item for EDIT	
	function pikiPopup( phone ){
		console.log( 'pikiPopup -- ' + phone );
		var x = '<div class="overlay"></div>';
		$("#site-body").append(x);
		
		var y = '<div id="piki-popup" class="piki-popup" style="display:none;"> Before you edit, we need to verify you own this phone.<br> It\'ll be quick. We promise. <br><br> We\'re going to text message a secret key to the following phone: ' + '<b>+' + phone + '</b><br><br>Just take a second to make sure that\'s your phone #, and click below to get your verification sms. <br><br><input type="button" id="sms-submit" value="send verification sms" onclick="smsVerificationAjax('+phone+')"> </div>';
		$("#site-body").append(y);
		$("#piki-popup").slideDown('slow');

	}
	
	// #2 item from EDIT
	function smsVerificationAjax( phoneToText ){

		var value = encodeURIComponent( phoneToText );

		if( value.length == 0 ){
			return false;
		}

		var data = {
			index: value , 
			serialize: function() { return 'phone='+this.index; }	
		};

		var verifyHTML = '<b>Verification SMS sent</b><br>' + phoneToText + '<br>Enter the key provided in that text below to verify and you\'re done<br><input id="phone-key" type="text" name="phone-key" value=""><input type="button" value="verify" onclick="verify('+phoneToText+')">';
		//Serialize that data
		var params = data.serialize();
		var file_url = url_root + "php/ajax_sms_verification.php";
		console.log( 'smsAJAX ' + file_url );
		console.log( 'params ' + params );
		getXML( file_url, params , "sms-submit" , function( xml ) { 

			console.log('sms - xml ' + xml);
			if(xml){
				var tXML = xml.getElementsByTagName("mydata");
				console.log('sms - txml ' + tXML);
				
				var postValue = tXML[0].getElementsByTagName('post')[0].getAttribute('value');
				var codeValue = tXML[0].getElementsByTagName('code')[0].getAttribute('value');
				console.log('sms - post value ' + postValue );
				console.log('sms - code value ' + codeValue );
				// var i = document.getElementById(index + '-row');
				// i.className = 'delete-row';
				// i.innerHTML = "<td> Row deleted</td> <td> <span class=\"undo\">undo (not active)</span> </td> <td></td> <td></td> <td></td> <td></td>";
			}

			//
			var x = document.getElementById('piki-popup');
			x.innerHTML = verifyHTML;
		});
	}
	
	
	// verify( phoneToVerify )
	function verify( phoneToVerify ){
		
		// Grab the key that they entered.
		var phoneKey = document.getElementById('phone-key').value;
		var value = encodeURIComponent( phoneToVerify );

		if( value.length == 0 ){
			return false;
		}

		var data = {
			index: value , 
			key: phoneKey,
			serialize: function() { return 'phone='+this.index+'&key='+this.key; }	
		};

		//Serialize that data
		var params = data.serialize();
		var file_url = url_root + "php/ajax_verify_key.php";
		console.log( 'verify-AJAX ' + file_url );
		console.log( 'params ' + params );
		getXML( file_url, params , "sms-submit" , function( xml ) { 

			console.log('xml ' + xml);
			if(xml){
				var tXML = xml.getElementsByTagName("mydata");
				var verificationNode = tXML[0].getElementsByTagName('verification');
				timestamp = verificationNode[0].getAttribute('timestamp');
				console.log( 'verify timestamp ' + timestamp );
				
				
				// Change the text to show we have succeeded and then reload page.
				// Place a timer to delay about 2 seconds.
				// Reload this page or redirect to our page that we will be editing.
				//---
				var verified = '<b>You\'re Verified.</b><p>Reloading the page with edit capabilites... </p>';
				var x = document.getElementById('piki-popup');
				x.innerHTML = verified;
				//pausecomp(5000); //delay 5 seconds.
				//window.location = '';			
				
			}else{
				console.log('no soup ');
			}

		});		
	}	

	function pausecomp(ms) {
		ms += new Date().getTime();
		while (new Date() < ms){}
	}
