/**
 *
 * Map jQuery
 *
 **/
 
var $jq = jQuery.noConflict();
$jq(document).ready(function(){
	
	/*
	$("#loc-map").mousemove(function(e){
		var x = e.pageX - this.offsetLeft;
		var y = e.pageY - this.offsetTop;

		$('#status').html(x +', '+ y);
	});
	*/
	
	$jq("#loc-map a").css("text-indent", "-9999px");
	
	$jq("#loc-map a").hover(function(){
		$jq(this).stop(true, true).next(".tip").fadeIn(200);
	}, function() {
		$jq(this).stop(true, true).next(".tip").fadeOut(200);
	});
		
});
