//
// DS. JQuery Simple Input Swap
// Author : Mike Stephens / David Goadby
// (c) 2009 Descent Design - provided 'AS-IS'
// 

$(document).ready(function() {


	$('#frmContact input').focus(function () {
		
	  $(this).removeClass('input');
	  $(this).addClass('switch');
	  
	});
	
	$('#frmContact input').blur(function () {
		
	  $(this).removeClass('switch');
	  $(this).addClass('input');
	  
	});



});