/****************topNavi********************/
$(document).ready(function(){

$('#outline_btn li').prepend('<ul></ul>');
 $("li").each(function(){
var li = $(this).find("li").html();
$(this).find('li').show().html(li);}); 

$("li").hover(function() {
					   
$(this).find('ul').stop().animate({ 
paddingBottom: "+=6"}, 260);
}

,function() {
$(this).find("ul").stop().animate({
paddingBottom: "0"}, 250);
}

);	
 });

