function homeOffices()
{
	var fadeSpeed = 300;
	
	// add a hover on/off functions to all office links
	$('.homeOfficeLinks a')
	.hover(function(){
		// fade the black background in
		$('#officeFade').stop(true).fadeTo(fadeSpeed, .4);
		$(this).siblings().stop(true).css({color: '#a7b1bf'});
	},
	function(){
		// fade the black background out
		$('#officeFade').stop(true).fadeTo(fadeSpeed, 0);
		$(this).siblings().stop(true).css({color: '#e9f1fc'});
	});
}

$(homeOffices);

