$(function() {
	$('a.email').each(function(){
		e = this.rel.replace('/','@');
		this.href = 'mailto:' + e;
		$(this).text(e);
	});
	$("#arrive").attr({ value: 'mm/dd/yyyy' }).focus(function(){
    if($(this).val()=="mm/dd/yyyy"){
       $(this).val("");
    }
		});
	$("#depart").attr({ value: 'mm/dd/yyyy' }).focus(function(){
    if($(this).val()=="mm/dd/yyyy"){
       $(this).val("");
    }
		});
	$(".email").attr({ value: 'enter your email address' }).focus(function(){
    if($(this).val()=="enter your email address"){
       $(this).val("");
    }
		});
});
