jQuery(function($) {

	$('#navigation > ul > li').each(function() {
		var w = 0;
		$(this).find('ul li a').each(function() {
			if (w < $(this).outerWidth()) {
				w = $(this).outerWidth();
			}
		});
		$(this).find('.dd').width(w);
	});
	
	$("#navigation ul li").hover(function() {
		$(this).css({ 'z-index' : 100 });
		$(this).find(".dd").css('visibility', 'visible');
	}, function() {
		$(this).css({ 'z-index' : 1 });
		$(this).find(".dd").css('visibility', 'hidden');
	});
	
	$("#footer .address").hover(function() {
		$(this).css({ 'z-index' : 100 });
		$(this).find('.tooltip').fadeIn(100);
	}, function() {
		$(this).css({ 'z-index' : 1 });
		$(this).find('.tooltip').fadeOut(100);
	});
});
