$(document).ready(function(){
	// show/hide vcard
	$("#header #sherylMungall .fn").click(function() {
			$("#header #sherylMungall .details").slideToggle("fast");
	});

	// dropshadows on images
	$("#content .photo").dropShadow({left: -1, top: -1, opacity: 0.6, blur: 2});
	
	// Fancy Box
	$("a.fancy").fancybox({zoomSpeedIn: 300, zoomSpeedOut: 300});
		
	$("#header .contents, #header #sherylMungall .fn").pngFix();
});