function hideAll() {
	var menus = $('div.lh_container');
	jQuery.each(menus, function() {
		$(this).hide();
	});
}


$(document).ready( function() {
	
	$('#menu').mouseleave(function() {
		hideAll();
	});
	
	$('.lh_hMenu ul li p a').mouseenter(function() {
		hideAll();
		$(this).parent().next('div.lh_container').show();
	});	

	$('div.lh_container').mouseleave(function() {
		$(this).hide();
	});
	
	$('div.reveal').mouseenter(function() {
		var img = $(this).find('img');
		img.each(function () {
			$(this).toggle();
		});
	});	
	$('div.reveal').mouseleave(function() {
		var img = $(this).find('img');
		img.each(function () {
			$(this).toggle();
		});
	});	
	
	$('#corrections h2 a').click(function(e) {
		e.preventDefault();
		$('#corrections-form').toggle();
	});
	
	$('#corrections-form').toggle();
	
});
