$(document).ready(function()
	{
	$("#destination").hover(function()
	{
	$(this).find("div").show();
	},
	
	function() {
	$(this).find("div").hide();
	}
	);
}
);
