$('document').ready(function(){
	$('.menu-navigation h2').bind('click', function(){	
		if ($(this).attr('class') == 'open') {
			$(this).removeClass('open');
			$(this).addClass('close');
			$(this).next().css({				
				display: 'none'
			});
		} else {
			$(this).removeClass('close');
			$(this).addClass('open');
			$(this).next().css({				
				display: 'inline'
			});
		}
	});
})
