// JavaScript Document

//slider
var $j = jQuery.noConflict();

		$j(document).ready(function(){
									
		});	
$j(function(){
		$j('.SlideTab').tabSwitch('create', {type: 'toggle', height: 220, width: 400});
		$j('.tabSelect').click(function(e){
			$j('.SlideTab').tabSwitch('moveStep',{step: parseInt($j(this).attr('rel'))});
			e.preventDefault();
		});
		$j('.Nav').click(function(e){
			$j('.SlideTab').tabSwitch('moveStep',{step: $j(this).attr("rel")});
			e.preventDefault();
						
		});
	});

