// JavaScript Document
  	var selLoc = "conSTACY";
    
  	google.load("jquery", "1");
  	google.setOnLoadCallback(function() {
    
  		// Hide contact info
  		$("#contact_info div").hide();
  		$("#contact_info .sel").show();

  		$("#team_info div").hide();
  		$("#team_info .sel").show();
  
  		$("#nav a").hover(function() {
  			$(this).animate({
  				backgroundColor: "#069",
  				color: "#fff"
  			}, 100);
  		},
  		function() {
  			if (!$(this).hasClass("sel")) {
  				$(this).animate({
  					backgroundColor: "#fff",
  					color: "#069"
  				}, 300);
  			}
  		});
  
  		$("#contact_nav a").hover(function() {
  			$(this).animate({
  				backgroundColor: "#069",
  				color: "#fff"
  			}, 100);
  		},
  		function() {
  			if (!$(this).hasClass("sel")) {
  				$(this).animate({
  					backgroundColor: "#fff",
  					color: "#069"
  				}, 300);
  			}
  		});
  
  		// onClick
  		$("#contact_nav li a").click(function(){
  			selLoc = $(this).attr("id");
  			$("#contact_nav li a").removeClass("sel").css({
  				backgroundColor: "#fff",
  				color: "#069"
  			});
  			$("#contact_info div").removeClass("sel").hide();
  			$(".dot").removeClass("sel");
  			$(this).addClass("sel").css({
  				backgroundColor: "#069",
  				color: "#fff"
  			});;
  			$("#contact_info div").each(function(i){
  				if ($(this).hasClass(selLoc)) $(this).show();
  			});
  			return false;
  		});
  
  
  		$("#team_nav a").hover(function() {
  			$(this).animate({
  				backgroundColor: "#069",
  				color: "#fff"
  			}, 100);
  		},
  		function() {
  			if (!$(this).hasClass("sel")) {
  				$(this).animate({
  					backgroundColor: "#fff",
  					color: "#069"
  				}, 300);
  			}
  		});
  
  		// onClick
  		$("#team_nav li a").click(function(){
  			selLoc = $(this).attr("id");
  			$("#team_nav li a").removeClass("sel").css({
  				backgroundColor: "#fff",
  				color: "#069"
  			});
  			$("#team_info div").removeClass("sel").hide();
  			$(".dot").removeClass("sel");
  			$(this).addClass("sel").css({
  				backgroundColor: "#069",
  				color: "#fff"
  			});;
  			$("#team_info div").each(function(i){
  				if ($(this).hasClass(selLoc)) $(this).show();
  			});
  			return false;
  		});
  
  	});