$(function() {
	$('#themebox > ul').tabs({fx :{opacity: 'toggle', duration: 'slow'}}).tabs('rotate', 5000);
	var $tabs = $('#themebox').tabs();
	$(".ui-tabs-panel").each(function(i){
		var totalSize = $(".ui-tabs-panel").size() - 1;
		var max = totalSize + 1;
		if (i != 0) {
			prev = i;
			$(".pager",this).prepend("<a href='#' class='prev-tab mover' rel='"+prev+"'>forrige</a>");
		}
		if (i != totalSize) {
			next = i + 2;
			$(".pager",this).prepend("<a href='#' class='next-tab mover' rel='"+next+"'>n&aelig;ste</a>");
		}
		
		$(".pager div",this).append("/"+max);
	});
	$('.next-tab, .prev-tab').click(function() { 
		$tabs.tabs('select', $(this).attr("rel"));
		return false;
	});
});