$(function() {
	// Moves the bg sprite on imagempa hover
	var img = $('#mapInner img')
	$('#MAPMap area').each(function(i) {
			$(this).data('pos', i);
		}).hover(function() {
			var pos = $(this).data('pos'),
				y = 272,
				bgpos = pos * -y + 'px';
			img.css('opacity', 0).parent().css('background-position', '0 ' + bgpos);
		}, function() {
			img.css('opacity', 1);	
		});
});