$(document).ready(function(){
	var mX = 0;
	var mY = 0;

	$('.map').maphilight({fade: false});

	var def_options = {
		'titlePosition'		: 'outside',
		'transitionIn'		: 'fade',
		'transitionOut'		: 'fade',
		'titleShow': false
	};
	$('area.fancy').each(function(){
		$(this).fancybox(def_options);
	});
	$('#map1 area').click(function(){
		if (!$(this).hasClass('fancy')){
			return false;
		}
	});



	$(document).mousemove(function(e){
		mX = e.pageX;
		mY = e.pageY;
	});


	$('#map1 area').hover(function(e){
		var x = e.clientX;
		var y = e.clientY;
		$('#tooltip').html($(this).attr('alt'));
		$('#tooltip').show();
	}, function(){
		$('#tooltip').hide();
	});


	

	var inte = setInterval(function(){
		$('#tooltip').css({left: (mX+10), top: (mY-20)});
	}, 5);
});


