$(function() {
	$('a.email').each(function(){
		e = this.rel.replace('/','@');
		this.href = 'mailto:' + e;
		$(this).text(e);
	});
	$(".search").attr({ value: 'Search' }).focus(function(){
    if($(this).val()=="Search"){
       $(this).val("");
    	}
	});
	$(".enews").attr({ value: 'enter your email address to get our enews' }).focus(function(){
    if($(this).val()=="enter your email address to get our enews"){
       $(this).val("");
    	}
	});
});
