$(document).ready(function(){

	$('#mapzone a').each(function (index,element) {
		//alert(element);
		$(this).mouseover(function () { 
			var img = this.getElementsByTagName('img');
			if (!img[0].src.match('_h.'))
				img[0].src = img[0].src.replace(new RegExp('(\.[a-z]+)$'), '_h$1');
			//alert(img[0].src );		
		});
		$(this).mouseout(function () { 
			var img = this.getElementsByTagName('img');
			if (img[0].src.match('_h.'))
				img[0].src = img[0].src.replace('_h.', '.');
			//alert(img[0].src );		
		});
		$(this).click(function () { 
			var img = this.getElementsByTagName('img');
			if (img[0].src.match('_h.'))
				img[0].src = img[0].src.replace('_h.', '.');
			//alert(img[0].src );		
		});
	});
	//alert($('#mapzone > a'))

});
