function swip (elementInput, swipFrom, swipTo)
{
if (elementInput.value == swipFrom) elementInput.value = swipTo;
}

$(document).ready(function() {

	$('input.button').hover(function(){
		$(this).addClass('b_hover');
	},
	function(){
	$(this).removeClass('b_hover');
	});

	$('ul#regions li').hover(function(){
		$(this).children('span.zoom').addClass('zoom_display');
	},
	function(){
	$(this).children('span.zoom').removeClass('zoom_display');
	});
  

});

