// JavaScript Document

$( function() {
	
	//hover
	$('.greenTent').hover(
	function() {
		$('#gt', this).stop(1,1).show();	
	},function() {
		$('#gt', this).delay(400).fadeOut();	
	})

})
