jQuery(document).ready(function() {
	jQuery('#worldmap ol li a').hide();
	jQuery('#worldmap ol li a').mouseover(function() {
		jQuery(this).show();
	});
	jQuery('#worldmap ol li a').mouseout(function() {
		jQuery(this).hide();
	});
	jQuery('#worldmap map area').mouseover(function() {
		var href = jQuery(this).attr('href');
		jQuery('#worldmap ol li a[href="'+href+'"]').show();
	});
	jQuery('#worldmap map area').mouseout(function() {
		var href = jQuery(this).attr('href');
		jQuery('#worldmap ol li a[href="'+href+'"]').hide();
	});
});