$(function() {
	$('a.email').each(function(){
		e = this.rel.replace('/','@');
		this.href = 'mailto:' + e;
		$(this).text(e);
	});
/*
	$("#search_keywords").attr({ value: 'Search for...' }).focus(function(){
    if($(this).val()=="Search for..."){
       $(this).val("");
    }
		});
*/
	$(".signup").attr({ value: 'Sign up for enews' }).focus(function(){
    if($(this).val()=="Sign up for enews"){
       $(this).val("");
    }
		});
});