
$(document).ready(function(){
  		$("input[type=text]").focus(function(){
			if($(this).attr('class') == 'vte1'){
				$(this).css("display", "none");
				$(this).css("width", "0");
				$(this).prev('input[type=password]').css("display", "inline");
				$(this).prev('input[type=password]').css("width", "90px");
				$(this).prev('input[type=password]').trigger("focus");	
			}
		});
		$("input[type=password]").blur(function(){
			if($(this).attr('value') == ''){
				$(this).css("display", "none");
				$(this).css("width", "0");
				$(this).next('input[type=text]').css("display", "inline");
				$(this).next('input[type=text]').css("width", "90px");
			}
		});
		$("input[type=text]").blur(function(){
			if($(this).attr('class') == 'te1'){
				if($(this).attr('value') == ''){
					$(this).attr('value', 'email');
				}
			}
		});
		$("input[type=text]").focus(function(){
			if($(this).attr('class') == 'te1'){
				if($(this).attr('value') == 'email'){
					$(this).attr('value', '');
				}
			}
		});
});

