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');
	});
});

