/* Author: Ludwig Wendzich

*/
/* DOES NOT WORK IN CHROME
$(document).ready(function(){
	$("details").css("display","block");
	$(".vcard details").css("display","none");
	$(".contact .vcard strong").click(function(){
		$(this).parent().toggleClass("open").find("details").toggle();
	});
});
*/

$(".dets-tia, .dets-louise, .dets-andy").hide();

$(".vcard-tia .fn").click(function () {
	$(".dets-tia").toggle();
});
$(".vcard-louise .fn").click(function () {
	$(".dets-louise").toggle();
});
$(".vcard-andy .fn").click(function () {
	$(".dets-andy").toggle();
});









