$(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: 'Your email' }).focus(function(){
    if($(this).val()=="Your email"){
       $(this).val("");
    }
		});
});
