$(document).ready(function($) { 
	// ## Team Page Tag Filter
	/*$("#tag-filter a").click(function() {
		// if ($(this).attr("id") == "show-all") {
		if ($(this).hasClass("active")) {
			$("#tag-filter a").removeClass("active");
			$(this).removeClass("active");
			$("#employees .employee").addClass("active");
		}else {
		// Disable all other active elements:
		$("#tag-filter a").removeClass("active");
		$("#employees .employee").removeClass("active");
		// Enable matched elements:
		$(this).addClass("active");
		var getTag = "." + $(this).attr("id");
		$("#employees .employee").find(getTag).parents(".employee").addClass("active");
		}
		});
		// ## Team Page Info Bubble Hovers
		$("#employees li .headshot").hover(function() {
		var thisemployee = $(this).parent();
		$(thisemployee).css("z-index","1");
		$(".infoBubble",thisemployee).fadeIn("fast");
		},
		function() {
		var thisemployee = $(this).parent();
		$(thisemployee).mouseleave(function(){
		$(".infoBubble",this).hide();
		$(thisemployee).css("z-index","0");
		});
	}); */
		
	//Carousel For Dynamic logos - http://sorgalla.com/projects/jcarousel/#Examples
	$("#mycarousel").jcarousel({
        scroll: 9,
		visible: 5
    });
	
	
}); 
