$(function (){
	$('#change-form')
		.jqTransform()

})



$(function () {
	$('#email').focus(function() {
		if ($(this).val() == "email address") {
			$(this).val("");
		}
	});
	
	$('#email').blur(function() {
		if ($(this).val() == "") {
			this.value="email address";
		}
	});
})


