/**
 *
 * Site functions
 *
 **/
$(document).ready(function(){
	
	$("#loc-map a").hover(function(){
		$(this).stop(true, true).delay(200).next(".tip").fadeIn(200);
	}, function() {
		$(this).stop(true, true).next(".tip").fadeOut(200);
	});
		
});
