$(document).ready(function() {
  
  document_height = $(window).height();
  document_width = $(window).width();
  
  container_left_margin = (document_width-900)/2;
  
  $("#page-container").css("margin-left", container_left_margin+"px");
  
  $("li.drop-down").bind("click", function() {
    $(this).children("ul.sub-nav").css("display", "block");
  });
  
  $("ul#subnav-what-we-do").children().each(function() {
    $(this).children("a").bind("click", function() {
      $(".what-info").fadeOut("fast");
      $("#_"+this.id).fadeTo(500,1).fadeIn("fast");
    });
  })
  
  // $('#links').height($('#content-border').height());
  
});

function show_flash (page, height) {
  var flash = new SWFObject("/flash/"+page+"_flash.swf", "flashMovie", "600", height, "8", "#FF0000");
  flash.addParam("wmode", "transparent");
  flash.addParam("scale", "noscale");
  flash.write("flash");
}

function reveal_person (id) {
  $('.people').fadeOut("fast");
  $('#'+id).fadeTo(500,1).fadeIn("fast");
}
