jQuery(document).ready(function(){
		
jQuery('.SlideTab').tabSwitch('create',{width: 560, height: 400});
		jQuery('.tabSelect').click(function(e){
			jQuery('.SlideTab').tabSwitch('moveTo',{index: parseInt(jQuery(this).attr("rel"))});
			e.preventDefault();
		});
		jQuery('.Nav').click(function(e){
			jQuery('.SlideTab').tabSwitch('moveStep',{step: parseInt(jQuery(this).attr("rel"))});
			e.preventDefault();
		});
	});

