$(document).ready(function(){

	$('input[type="text"]').focus(function() {
		$(this).css("background","#fafafa");						 
		$(this).css("border-color","#b3b3b3");
		});

	$('input[type="text"]').blur(function() {
		$(this).css("background","#ffffff");						 
		$(this).css("border-color","#d4d4d4");										  
		});
	
	$('textarea').focus(function() {
		$(this).css("background","#fafafa");						 
		$(this).css("border-color","#b3b3b3");
		});

	$('textarea').blur(function() {
		$(this).css("background","#ffffff");						 
		$(this).css("border-color","#d4d4d4");										  
		});

});


