// remap jQuery to $
(function($){})(window.jQuery);


/* trigger when page is ready */
$(document).ready(function (){



$("a.grouped_elements").fancybox();





$(".employee-box a").click(function(e) {
  var id = this.hash;
    $("#employee-description article:visible").not(id).fadeOut(function(){
    $(id).fadeIn();
  });
  e.preventDefault();
});
$("#employee-description article:not(#paul)").hide();

	
});





/* optional triggers

$(window).load(function() {
	
});

$(window).resize(function() {
	
});

*/



