$(document).ready(function() {
	var queryhash = window.location.hash
	$("#blog a").hover(showVcardLabel, hideVcardLabel);

});

function showVcardLabel() {
	$("#blog a span").show();
	$("#blog a span").animate({
		opacity: 1,
	}, 250 );
}

function hideVcardLabel() {
	$("#blog a span").animate({ 
		opacity: 0
	}, 250 );
	setTimeout("$('#blog a span').hide();", 250);
	$("#blog a span").animate({ 
	opacity: 0
	}, 250 );
}


$(document).ready(function() {
	var queryhash = window.location.hash
	$("#gallery a").hover(showVcardLabel, hideVcardLabel);

});

function showVcardLabel() {
	$("#gallery a span").show();
	$("#gallery a span").animate({
		opacity: 1,
	}, 250 );
}

function hideVcardLabel() {
	$("#gallery a span").animate({ 
		opacity: 0
	}, 250 );
	setTimeout("$('#gallery a span').hide();", 250);
	$("#gallery a span").animate({ 
	opacity: 0
	}, 250 );
}




