function ClearInput(value, id){ // This calls our function ClearInput, and the two variables we will need for it to function the original value and the id.
var input = document.getElementById(id); // Gets the input field based on its id.
	if(value == input.value){ // If the default value is equal to the current value.
		input.value = ''; // Empty It.
	}else{ // Else the value is not equal to the current input field value.
		input.value = input.value; // Leave it the same.
	} // End Else.
} // Close Function.
function FillIn(value, id){
var input = document.getElementById(id);
	if(input.value == ''){ 
		input.value = value;
	}else{ 
		input.value = input.value; 
	}
}
$(function(){
	$('#social a').hover(function(e) {
		$('<div id="Tooltip"></div>').text($(this).attr("alt"))
			.css('top', e.pageY +32)
			.css('left', e.pageX -75)
			.appendTo('body');
		}, function() {
		$('#Tooltip').remove();
	});
	$('#social a').mousemove(function(e) {
		$("#Tooltip").css('top', e.pageY +32).css('left',e.pageX -75);
	});
});