// JavaScript Document
$( function() {
	
	//hover
	$('.greentent').hover(
	function() {
		$('.gt-vcard').stop(1,1).show();	
	},function() {
		$('.gt-vcard').delay(400).fadeOut();	
	})

	$('.gt-vcard').hover(
	function() {
		$(this).stop(1,1).show();	
	},function() {
		$(this).delay(400).fadeOut();	
	})

})
