jQuery(document).ready(function(jQuery) {

	jQuery("#employees li .headshot").hover(function() {
		var thisemployee = jQuery(this).parent();
		jQuery(thisemployee).css("z-index","1");
		jQuery(".infoBubble",thisemployee).fadeIn("fast");
	},
	function() {
		var thisemployee = jQuery(this).parent();
		jQuery(thisemployee).mouseleave(function(){
			jQuery(".infoBubble",this).hide();
			jQuery(thisemployee).css("z-index","0");
		});
	});  
});