
$(document).ready(function() {
	$(function() {

	$('#calendar a').Tooltip({
		track: true,
		delay: 0,
		showURL: false,
		showBody: " - "
		// top: -60,
		// left: -80
	});

	$('#feed abbr').Tooltip({
		track: true,
		delay: 0,
		showURL: false,
		showBody: " - "
		// top: -60,
		// left: -80
	});

	$('#footer abbr').Tooltip({
		track: true,
		delay: 0,
		showURL: false,
		showBody: " - "
		// top: -60,
		// left: -80
	});

	});

	$("#email").focus(function() {
		if( this.value == this.defaultValue ) {
			this.value = "";
		}
	}).blur(function() {
		if( !this.value.length ) {
			this.value = this.defaultValue;
		}
	});

});



