﻿$(function(){ 
$("#h_bottom .con .conn").eq(0).show().siblings().hide();
     $("#h_bottom .tit a").mouseover(function(){
		var $index=$("#h_bottom .tit a").index(this);
		$("#h_bottom .con .conn").eq($index).show().siblings().hide();
	 })
	 });
