$(document).ready(function() {
	$('.navItem').click(function(){
		if($(this).next().hasClass('dispNone')) {
			$(this).next().removeClass('dispNone');
		} else {
			$(this).next().addClass('dispNone');
		}
	});	
});
