jQuery(document).ready(function($){

$('div.naver ul li').last().addClass('naver_last');

$('div.paging ul li').hover(function(){
 $(this).addClass('hover');
 $(this).children('ul').stop(true, true).fadeIn();
 },
 function(){
 $(this).removeClass('hover');
 $(this).children('ul').stop(true, true).fadeOut();
}); 


















});
