// JavaScript Document
$(document).ready(function(){
	$("#contact a").hover(function() {
		$(this).next("#hcard").stop(true,true)
                          .animate({opacity: "show", top: "-50"}, "slow");
	}, function() {
		$(this).next("#hcard").stop(true,true)
                          .animate({opacity: "hide", top: "-55"}, "slow");
	});
});

$(document).ready(function(){
    $('#menu-top').animationNav({duration:800, animEffect: 'easeOutCubic'});
});



