$(document).ready(function() {
/*	
	$("#menu > a").mouseover(function() {
		var img = $(this).children();
		var activeSelector = "." + $(img).attr('id');
		$(activeSelector).css('position', 'absolute');
		$(activeSelector).css('top', $(img).offset().top);
		$(activeSelector).css('left', $(img).offset().left);	
		$(img).fadeOut('slow');
		$(activeSelector).fadeIn('slow');
		$(activeSelector).css('display', 'inline');
	});
	$("#menu > a").mouseout(function() {	
		var img = $(this).children();
		var activeSelector = "." + $(img).attr('id');
		$(activeSelector).fadeOut('slow');
	});	
	$("#hidden > a").mouseover(function() {
		
	});
*/	
	$("#menu > a").mouseenter(function() {
		var img = $(this).children();
		$(img).fadeIn('slow');
	});
	$("#menu > a").mouseleave(function() {
		var img = $(this).children();
		$(img).fadeOut('slow');
	});	
});

