$(document).ready(function(){

	$("#Form1 :input[name!='submit']").focus(function(){
			if ($(this).attr("value") == $(this).attr('id')) {
				$(this).attr({value: ""});
			}
			$(this).css({
				"color" : "#000",
				"font-style" : "normal",
				"font-weight" : "normal"
			})


	}).blur(function(){

		if ($(this).attr('value') == '' || $(this).attr('id') == $(this).attr('value')) {

			$(this).css({
				"color" : "#999",
				"font-style" : "italic"
			})

			$(this).attr({value: $(this).attr('id')});
		}
		
	});

});
