(function($){
	$(document).ready(function(){
		$("div.zipcheck input[type='text']").val("Postcode");
		
		$("div.zipcheck input[type='text']").focus(function() { 
			if($(this).val().toUpperCase() == "POSTCODE") {
				$(this).css({textAlign:"left", color:'#000000'});
				$(this).val("");
			}
		});
		
		$("div.zipcheck input[type='text']").blur(function() { 
			if($(this).val() == "") {
				$(this).css({textAlign:"center", color:'#696969'});
				$(this).val("Postcode");
			}
		});
	});
})(jQuery);
