
	$(function(){
		$('.SlideTab').tabSwitch('create',{type: 'table', height: 300, width: 663});
		$('.tabSelect').click(function(e){
			$('.SlideTab').tabSwitch('moveTo',{index : $(this).attr('rel')});
			e.preventDefault();
		});
		$('.Nav').click(function(e){
			$('.SlideTab').tabSwitch('moveStep',{step: parseInt($(this).attr('rel'))});
			e.preventDefault();
		});
	});

