$(document).ready(function(){
	$("div.img-active-top #img-active-top").hover(
		function(){
			$("div.img-active-top").find("div.fly-text-top").show();
		},
		function(){
			$("div.img-active-top").find("div.fly-text-top").hide();
		}
	);
	$("div.fly-text-top").hover(
		function(){
			$(this).show()
		});
	
	$("div.img-active-bottom #img-active-bottom").hover(
		function(){
			$("div.img-active-bottom").find("div.fly-text-bottom").show();
		},
		function(){
			$("div.img-active-bottom").find("div.fly-text-bottom").hide();
		}
	);
	$("div.fly-text-bottom").hover(
		function(){
			$(this).show()
		});

});
