

$(window).load(function () {
	setTimeout('init();', 1000);
});

function init(){
	$('.header .join .gsom_sfi input').val('e-Mail Address');

	$('.header .join .gsom_sfi input').click(function(){
			if ($(this).val()=='e-Mail Address'){
				$(this).val(''); 
			}			
			$('.header .join span').hide();
	});
	
	$('.header .join .gsom_sfi input').blur(function(){
			if ($(this).val()==''){
				$(this).val('e-Mail Address'); 
			}			
	});
}