	function setTabIndex(){
		$("#tabCurrentID").text(parseInt($(".SlideTab").tabSwitch('index'))+1);
	}

	$(function(){
		$('.SlideTab').tabSwitch('create',{type: 'slide', width: 700, height: 525});
		$('.tabSelect').click(function(e){
			$('.SlideTab').tabSwitch('moveTo',{index: parseInt($(this).attr("rel"))});
			setTabIndex();
			e.preventDefault();
		});
		$('.Nav').click(function(e){
			$('.SlideTab').tabSwitch('moveStep',{step: parseInt($(this).attr("rel"))});
			setTabIndex();
			e.preventDefault();
		});
	});
