



$(function(){  		   
	var Dfcolor= '#888';
	var txtcolor = '#222';       
	var cssObjDf = 
		{
		'color' : Dfcolor
		}
	var cssObjCh = 
		{
		'color' : txtcolor
		}
	$("input[alt]='text'").each
	(
	 	function()
		{
			var text = this['alt'] ;
			$(this).css(cssObjDf).val(text).bind("click",
				function() 
				{
					if ($(this).val() == text)
						$(this).css(cssObjCh).val('');			  
				}
			).bind("blur",
				function() 
				{
					if ($(this).val() == '')
						$(this).css(cssObjDf).val(text);
				}
			);
		}
		
	);
});
