$(function() {
	$('#gNav ul ul').each(function() {
		$ch = $(this);
		$(this).parent().hover(function() {
			$('img', this).css('visibility', 'hidden');
			$ch.show();
		}, function() {
			$('img', this).css('visibility', 'visible');
			$ch.hide();
		});
	});
});
