		   	$(function() {
		   		$(" img.main_img").hover(
					
		   			function(){
		   				$(this).next("div.popup_frame").show();
		   			},
		   			function(){
		   				$(this).next("div.popup_frame").hide();
		   			}
		   		);


		   		$("div.popup_frame").hover(
		   			function(){
		   				$(this).show();
		   			},
		   			function(){
		   				$(this).hide();
		   			}
		   		).click(function(){					
		   			window.open( $(this).next("div.area_feature_details").children("a.learn_more").attr("href"));
		   		});
				
				$("div.popup_frame").css("cursor","pointer");
				$("#top_topic").next().css("font-size","19px");
		   		
		   	});
