 $(document).ready(function() {
	$("a.kotona").live("click",function() {
		$(".next_away").fadeOut("slow", function () {
			$(".next_home").fadeIn("slow");
		});
	});
	$("a.vieraissa").live("click",function() {
		$(".next_home").fadeOut("slow", function () {
			$(".next_away").fadeIn("slow");
		});
	});
 });
