 $("#commentform #comment, #commentform #url, #commentform #email, #commentform #author").focus(function()
		{
		$(this).css( {'background' : '#DEDEDE', 'color' : '#000000', 'border': '1px solid #F88510'});
		}
	);
	

$("#commentform #comment, #commentform #url, #commentform #email, #commentform #author").blur(function()
		{
		$(this).css( {'background' : 'white', 'border': '1px solid #cccccc' });			 
		}
	);

$("#comments form button").click(function()
		{
	$(this).css( {'color' : '#000000', 'border': '1px solid #F88510'});
	}
);



/*
 * F88510 orange
 * green 45B004
 */ 

