// JavaScript Document
	$(function(){
		$('.SlideTab').tabSwitch('create', {type: 'toggle', toggle: 'fade', height: 330, width: 773});

		$('.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();
		});
	});

