/* SLIDETAB - Slideshow index.html e servicos_home.html */
$(function(){
	$('.SlideTab').tabSwitch('create',{width: 731, height: 361});
	$('.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();
	});
});
