// JavaScript Document
$(document).ready(function(){
  $(".inotice li,.inpage_notice li").mouseover(function(){ 
	$(this).next(".next_plk").show();
	$(this).siblings().next(".next_plk").hide();
  });
 

});
