jQuery.noConflict();

jQuery(document).ready(function(){
	
	var noSelection = 'img/kskmse_microsite_042611_karte_inaktiv_sz.jpg';
	var regioMap = jQuery('.regioMap');
	
	jQuery('area.m-sta')
		.mouseover(function() { 
			regioMap.attr('src', 'img/kskmse_microsite_042611_karte_sta_aktiv_sz.jpg');
		})
		.mouseout(function() {
			regioMap.attr('src', noSelection);
		});

	jQuery('area.ebe')
		.mouseover(function() { 
			regioMap.attr('src', 'img/kskmse_microsite_042611_karte_ebe_aktiv_sz.jpg');
		})
		.mouseout(function() {
			regioMap.attr('src', noSelection);
		});

});

