$(document).ready(function(){
	$("a[rel^='prettyPhoto']").prettyPhoto();
	
	$("#Phone").focus(function(){
		if($(this).val() == 'Phone*'){
			$(this).val('');
		}
	})
	.blur(function(){
		if($(this).val() == ''){
			$(this).val('Phone*');
		}
	});
	
	$("#Name").focus(function(){
		if($(this).val() == 'Name*'){
			$(this).val('');
		}
	})
	.blur(function(){
		if($(this).val() == ''){
			$(this).val('Name*');
		}
	});
	
	$("#Email").focus(function(){
		if($(this).val() == 'Email*'){
			$(this).val('');
		}
	})
	.blur(function(){
		if($(this).val() == ''){
			$(this).val('Email*');
		}
	});

	$("#Message").focus(function(){
		if($(this).val() == 'Type your message here...'){
			$(this).val('');
		}
	})
	.blur(function(){
		if($(this).val() == ''){
			$(this).val('Type your message here...');
		}
	})			
			
});
