// contact

$(document).ready(function() {
	$('input').focus(function() {
		$(this).css('background-color', '#FFFFFF').css('border', '1px #00adef solid');
	});
	
	$('input').blur(function() {
		$(this).css('background-color', '#e8eef2').css('border', '1px #e8eef2 solid');
	});
	$('textarea').focus(function() {
		$(this).css('background-color', '#FFFFFF').css('border', '1px #00adef solid');
	});
	
	$('textarea').blur(function() {
		$(this).css('background-color', '#e8eef2').css('border', '1px #e8eef2 solid');
	});
	$('select').focus(function() {
		$(this).css('background-color', '#FFFFFF').css('border', '1px #00adef solid');
	});
	
	$('select').blur(function() {
		$(this).css('background-color', '#e8eef2').css('border', '1px #e8eef2 solid');
	});
});
