// JavaScript Document
if ($('pushbar')) 
{
var fx = new Fx.Morph('pushbar', {duration:420, wait:false});
$('pushbar').addEvent('mouseenter', function(e){ fx.start({ 'height':120 }); });
$('pushbar').addEvent('mouseleave', function(e){ fx.start({ 'height':30  }); });
fx.start({ 'height':30 });
}
