$(function() {
	// Formulaire de sélection
	$('#shop-submit').hide();
	$('#sel-pays').change(function() {
		base_url = $('#shop-baseurl').val();
		window.location.replace(base_url + 'index.php/' + $(this).val().replace(' ','-'));
	});
	$('#sel-ville').change(function() {
		base_url = $('#shop-baseurl').val();
		co = $('#sel-pays').val().replace(' ','-');
		ci = $(this).val().replace(' ','-');
		window.location.replace(base_url + 'index.php/' + co + '/' + ci);
	})
	// Map globale
	$('#global-map').find('area').hover(
		function() {
			re = /.*php\/(.+)$/;
			loc = $(this).attr('href');
			nloc = loc.replace(re,"$1");
			$('#mapglobale').attr('src', '/skins/' + adp_season + '/img/maps/g-' + nloc + '.png');
		},
		function() {
			loc = $(this).attr('href');
			$('#mapglobale').attr('src', '/skins/' + adp_season + '/img/maps/g-map.png');
		}
	);
	// Continents
	var orig_img = document.getElementById('mapcont');
	if (orig_img != null) {
		var orig_src = $('#mapcont').attr('src');
	}
	$('#cmap').find('area').hover(
		function() {
			loc = $(this).attr('id');
			$('#mapcont').attr('src', '/skins/' + adp_season + '/img/maps/c-' + loc + '.png');
		},
		function() {
			$('#mapcont').attr('src',orig_src);
		}
	);
});

