/* Author: 

*/

$(document).ready(function(){

	$(".location-block a").hover(function(){
			$(this).find(".glow").fadeIn();
			$(this).find(".arr").animate({
				top: "8px"
				}, 500);
		}, function(){
			$(this).find(".arr").animate({
				top: "1px"
				}, 500);
			$(this).find(".glow").fadeOut();
	})		
});
