$(document).ready(function () {

$(".offices div").hover(function () { 
	$(this).css('cursor','pointer');
	$(this).css('background-color','#e4f1fa');
	$(this).fadeOut(100);$(this).fadeIn(800);
},
function () { 
	$(this).css('cursor','default');
	$(this).css('background-color','#FFF');
});

$(".offices div").click(function () { 
location.href = $(this).attr("rel");
});
});

