jQuery(document).ready(function(){	
	//This is the code to make the tab
	jQuery('.SlideTab').tabSwitch('create', {type: 'scroll', height: 240, width: 370, speed: 2000 });
	//This code to move to the next or previous tab
	//jQuery('.SlideTab').tabSwitch('moveStep',{step: parseInt($(this).attr('rel'))});
	//Move to a specific tab base on its rel
	//jQuery('.SlideTab').tabSwitch('moveTo',{index : $(this).attr('rel') });
	//Make it auto run
	jQuery('.SlideTab').tabSwitch('startAuto',{interval: 5000});
});