addDOMLoadEvent(logoEffects);

function logoEffects () {
    if ($('livingroom'))
    {
        var x = $$('#livingroom a');
        for(var i=0; i < x.length; i++)
        {
            Event.observe($(x[i]), 'mouseover', function(e) {
                new Effect.Shake(this.down("img"), {duration: 0.25, distance: 2});
            });
        }
    }
}
