jQuery(function(){

	jQuery('.cities').css({opacity:'0'});
	jQuery('#global').hover(
		function() {
			jQuery('#global').animate({width:'436px'}, 100);
			jQuery('.globalOffices').animate({opacity:'0'}, 100);
			jQuery('.cities').delay(100).animate({opacity:'1'}, 100);
		}, function () {
			jQuery('#global').animate({width:'76px'}, 100);
			jQuery('.globalOffices').animate({opacity:'1'}, 100);
			jQuery('.cities').animate({opacity:'0'}, 100);
		});
	});
