// JavaScript Document
$(document).ready(function(){
   	
	if($.browser.safari){ $(".bdTableLeft").css("width","221px"); }
	
	// staff
	$(".staffIcon").click(function(event){
	var currentId = $(this).attr('id'); 
	var prevId = $(".staffExpandShow").attr('id').slice(0,-2);	
	if(prevId){ // checking for open staff		
		$("#"+prevId+"_e").addClass("staffExpand").removeClass("staffExpandShow");
		$("#"+prevId+"_c").removeClass("staffExpand");
	}
	$("#"+currentId+"_e").removeClass("staffExpand").addClass("staffExpandShow");
	$("#"+currentId+"_c").addClass("staffExpand");
	});
	$("#open").click(function(event)
	{	
		if($("#contact").height()==0)
		{
			$(".contactContent").fadeIn('slow');
			$("#contact").animate({"height": "290"}, {duration: "slow" });
		}else
		{
			$("#contact").animate({"height": "0"}, {duration: "slow" });
			$(".contactContent").fadeOut('slow');
		}
	});
});
