		$(document).ready(function(){
		$('#contactBox').tabs({selected:[1]});						   
					   
		// Slidet by super Fabe
		$(".moreLink").click(function(){getslide();});		
		$("#rovaniemi > *").not(":first").hide(); $("#oulu > *").not(":first").hide(); var i = 0;
		while(i < $("#oulu > *").length){ $("#oulu > *").eq(i).data("position",i); $("#rovaniemi > *").eq(i).data("position",i); i++; }		
 				
		});
		
		function getslide(){
		var oulu = $("#oulu > *");			
		var rovaniemi = $("#rovaniemi > *");			
		var activetab = "#" + $(".ui-tabs-panel:visible").attr("id");
		var inactivetab = "#" + $(".ui-tabs-panel:hidden").attr("id");
		
		var position = $(activetab + " >*").not(":hidden").data("position");		
		
		var toslideout = position;		
			if(position < oulu.length-1){ var toslidein = position+1; } else { var toslidein = 0; }
			$(activetab + " >*").eq(toslideout).hide("slide", { direction: "right" }, 500, function(){
			$(activetab + " >*").eq(toslidein).show("slide", { direction: "left" }, 500); });
			
			$(inactivetab + " >*").eq(toslideout).hide();
			$(inactivetab + " >*").eq(toslidein).show();
		}
