function fadeOut(a){
   				$(a).animate({
   				borderColor: "#fbfbfb"
   				}, 400 );
   			};
   		function fadeIn(a){
   				$(a).animate({
   				borderColor: "#fbfbfb"
   				}, 200 );
   			}
