$(document).ready(
				function(){
						$('.header input.login').focus(
												function(){
													if($(this).attr('value') == 'Email:'){
														$(this).attr('value', '');
													}
												}
											);
						$('.header input.login').blur(
												function(){
													if($(this).attr('value') == ''){
														$(this).attr('value', 'Email:');
													}
												}
											);
					}
			);

