// JavaScript Document


//網站建置中marker

$(document).ready(function(){
		$('.soon').hide();				   	
    $('.download').mouseover(function (){		//好物下載
	      $(this).next().show(); 
	    }).mouseout(function(){
   $(this).next().hide();
  });
	$('.column').mouseover(function (){			//專題分享
	      $(this).next().show(); 
	    }).mouseout(function(){
   $(this).next().hide();
  });
	$('.member').mouseover(function (){			//會員
	      $(this).next().show(); 
	    }).mouseout(function(){
   $(this).next().hide();
  });

	$('.svport').mouseover(function (){			//footer的服務據點
	      $(this).next().show(); 
	    }).mouseout(function(){
   $(this).next().hide();
  });
	
})
