window.addEvent('domready', function(){
 
 if ($defined($('adnowFrm'))) {	 
 
 theVal = new FormValidator('adnowFrm');
 
  if ($defined($('nav_2'))) {
   $('nav_2').addEvent('click', function() {  
    theVal.ignoreField('2_location');
	theVal.ignoreField('2_degreeOther');
	theVal.ignoreField('2_degree');
	theVal.ignoreField('2_type');
	theVal.ignoreField('2_company');
   });
  }
 
  if ($defined($('nav_3'))) {
   $('nav_3').addEvent('click', function() {  
    theVal.ignoreField('3_apply');
	theVal.ignoreField('3_closing');
   });
  }
 }
 
 if ($defined($('contactFrm'))) {
  theConVal = new FormValidator('contactFrm');
 }
 
});