(function ($) {
var self = mm.international = mm.extend({

/* ===============================	 */
	init: function () {
		var area = ['asia', 'north_america', 'south_america', 'oceania', 'middle_east', 'europe', 'africa'];
	
		this.each(area, function(_area) {
			var area = this;
			var imgObj = new Image();
			imgObj.src = '/shared/img/about/international/map_'+ _area +'.gif';
			$('#international_map .'+ _area +' a').hover(
				function () {
					$('#international_map ul').css('background','url(/shared/img/about/international/map_'+ _area +'.gif) left top no-repeat');
				},
				function () {
					$('#international_map ul').css('background','url(/shared/img/about/international/map.gif) left top no-repeat');
				}
			)
		});
	}
});

/* ===============================	 */

$(function () {
	mm.international.init();
});
})(jQuery);

/* ===============================	 */