$(document).ready(function(){

		$(".vcard_button").hover(function() {
		$(this).prev("#vcard-hover").animate({opacity: "show", top: "-27"}, "fast");
	}, function() {
		$(this).prev("#vcard-hover").animate({opacity: "hide", top: "-47"}, "fast");
	});


});
