// Initialize.
function init_panels() {
// Does element exist?
if (!$('#menu').length) {
// If not, exit.
return;
}
// Animation speed.
var speed = 200;
// Add class for last
.
$('#menu .link:last-child').addClass('last');
// Begin with mouseover.
$('#menu .link').hover(function() {
// Alter target .
$(this).stop().animate({
height: '23px',
fontSize: '18px',
paddingTop: '6px',
paddingRight: '6px',
paddingBottom: '6px',
paddingLeft: '35px'
// Speed.
}, speed)
// Alter sibling .
.siblings('#menu .link').stop().animate({
height: '17px',
fontSize: '12px',
paddingTop: '4px',
paddingRight: '4px',
paddingBottom: '4px',
paddingLeft: '25px'
// Speed.
}, speed);
// $(this).next("#menu span .menulist").slideDown("slow");
},
// End with mouseout.
function() {
$(this).stop().animate({
height: '17px',
fontSize: '12px',
paddingTop: '4px',
paddingRight: '4px',
paddingBottom: '4px',
paddingLeft: '25px'
// Speed.
}, speed)
// Restore sibling .
.siblings('#menu .link').stop().animate({
height: '17px',
fontSize: '12px',
paddingTop: '4px',
paddingRight: '4px',
paddingBottom: '4px',
paddingLeft: '25px'
// Speed.
}, speed);
// $(this).next("#menu span .menulist").slideUp("fast");
});
}
// Kick things off.
$(document).ready(function() {
init_panels();
});