	//removes nav classes
	function removeNavClasses() {
			$('body')[0].className = $('body')[0].className.replace(/\bnav1(.*)\b/g, '');
			$('body')[0].className = $('body')[0].className.replace(/\bnav2(.*)\b/g, '');
			$('body')[0].className = $('body')[0].className.replace(/\bnav3(.*)\b/g, '');
	}

$(document).ready(function() {
	
	$('#item-volunteers a.level-1').hoverIntent( function(event) {
			removeNavClasses();
			$('body').addClass('nav1-volunteers');
	}, 
	function() {}
	);
	
	$('#item-organizations a.level-1').hoverIntent( function(event) {
			removeNavClasses();
			$('body').addClass('nav1-organizations');
	},
	function() {}
	);
		
	$('#item-churches a.level-1').hoverIntent( function(event) {
			removeNavClasses();
			$('body').addClass('nav1-churches');
	},
	function() {}
	);
	
	$('#item-about a.level-1').hoverIntent( function(event) {
			removeNavClasses();
			$('body').addClass('nav1-about');
	},
	function() {}
	);
	
	$('#item-my-account a.level-1').hoverIntent( function(event) {
			removeNavClasses();
			$('body').addClass('nav1-my-account');
	},
	function() {}
	);
		
 });                                  
