$(function(){
	//This is the code to make the tab
	$('.SlideTab').tabSwitch('create', {type: 'toggle', toggle: 'fade', height: 330, width: 649});
	//Make it auto run
	$('.SlideTab').tabSwitch('startAuto',{interval: 7000});
	$('.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();
	});
	
	$('.SlideTab').hover(function(){$('.SlideTab').tabSwitch('stopAuto')} , function(){$('.SlideTab').tabSwitch('startAuto',{interval: 7000})});

});
