/**
 * @author Joseph  Gringeri
 */
      $(document).ready(function() {
		// hides all of the explanation divs with className inputExp
		$('div.inputExp').hide();
		
		// for each anchor with className 'aExp', find its
		// parent span, and then the next div after the span
		// with the className inputExp and toggle the div on click
		$('a.aExp').click(function() {
			$('div.inputExp').hide(300);
			$(this).parent('span').next('div.inputExp').slideToggle(300);
			return false;
		})
		
		// Add CSS class appfield1 to all input elements
		$('input').addClass('appfield1');
		
		// On focus add class appfield2
		$('input').focus(function() {
        	$(this).addClass('appfield2');
      	});
		
		// On blur remove class appfield2,
		// add class appfield1
		$('input').blur(function() {
			$(this).removeClass('appfield2');
        	$(this).addClass('appfield1');
      	});
		
	




      	
		




	  
	  
	  
	 


      });


