		   	$(function() {
		   		//catch whole learn_mores and attribute target=_blank
				/*$('a.learn_more').each(function(){
					$(this).attr("target","_blank");
				});*/
		   		$("div.area_feature img.main_img").hover(
					
		   			function(){
		   				$(this).next("div.popup_frame").show();
		   			},
		   			function(){
		   				$(this).next("div.popup_frame").hide();
		   			}
		   		);


		   		$("div.area_feature div.popup_frame").hover(
		   			function(){
		   				$(this).show();
		   			},
		   			function(){
		   				$(this).hide();
		   			}
		   		).live('click',function(){$(this).next("div.area_feature_details").children("a.learn_more").click();});
				
				$("div.area_feature div.popup_frame").css("cursor","pointer");
				$("#top_topic").next().css("font-size","19px");
		   		
		   	});
