﻿jQuery(function(){
// init
jQuery("#shopnavi2").css({
"height": "10px"
}
);
// 反応DIV指定
jQuery("#shopnavi1").hover(
// 乗っかったとき
function(){
jQuery("#shopnavi2").animate({
"height": "140px"
}
, 400, function(){
}
)
}
,
// 離れたとき
function(){
jQuery("#shopnavi2").animate({
"height": "10px"
}
, 200, function(){
}
);
}
);
}
);
