$(function(){
	$('.SlideTab').tabSwitch('create',{width: 800, height: 410, index: 8});
	$('.tabSelect').click(function(e){
		$('.SlideTab').tabSwitch('moveTo',{index: parseInt($(this).attr("rel"))});
	e.preventDefault();
	});
	$('.Nav').click(function(e){
		$('.SlideTab').tabSwitch('moveStep',{step: parseInt($(this).attr("rel"))});
	e.preventDefault();
	});
});
