$(document).ready (function (){


	//sub-navigation expand/collapse
	$(".tab").click(function(){
		$("#portfolio-menu ul").removeClass("menu-display");
		$("#portfolio-toggle").show();
		$(this.href.substring(this.href.indexOf("#"), this.href.length)).addClass("menu-display");
	});
	
	$("#portfolio-toggle").click(function(){
		$("#portfolio-menu ul").removeClass("menu-display");
		$(this).hide();
	});

	//showcase carousel
   	$(".carousel").jCarouselLite({
		visible: 1,
		auto: 3000,
    	speed: 600,
		btnNext: "#showcase-nav-next",
	    btnPrev: "#showcase-nav-prev"
   	});
	
	//showcase carousel
   	$(".news-carousel").jCarouselLite({
		visible: 1,
		auto: 4000,
    	speed: 600,
		vertical: true
   	});
	
	//the team hover show
	$(".team-info-person").not("#team-first-show").hide();
	$("#team-list a").click(function(){
		$(".team-info-person").hide();
		$("#team-list li").removeClass("selected");
		$(this.href.substring(this.href.indexOf("#"), this.href.length)).show();
		$(this).parent().addClass("selected");
	});
	
});