function showWatermarks(){

	$(".watermark").each(function(i){
	
		if($(this).val() == ""){
			var water = $(this).attr("watermark");
			$(this).val(water);
			$(this).css({ color: '#BBB' });
			$(this).attr("isempty", "yes");
		}
	
		$(this).focus(function(){
			
			if($(this).val() == $(this).attr("watermark")){
				$(this).val("");
				$(this).removeAttr("style");
				$(this).attr("isempty", "no");
			}
			
		});
		
		$(this).blur(function(){
			
			if($(this).val() == ""){
				var water = $(this).attr("watermark");
				$(this).val(water);
				$(this).css({ color: '#BBB' });
				$(this).attr("isempty", "yes");
			}
			
		});
		
	});
}
