        window.addEvent('domready', function () {
        SqueezeBox.assign($$('a.boxed'), {parse: 'rel'});
        var b1 = $('discover_what_you_can_print');
        b1.set('morph', {duration: 600, wait: true, link: 'ignore'});
        b1.addEvent('mouseover', function () {this.morph({'background-position': ['0 0', '300px 0']});});
        var fnChain = new Chain();
        fnChain.chain(
            function(){b1.morph({'opacity':[0.25, 1]});},
            function(){b1.morph({'opacity':[0.25, 1]});},
            function(){b1.morph({'opacity':[0.25, 1]});}
        );
        //(function(){fnChain.callChain();}).delay(2000); 
        var myFx = new Fx.Tween(b1, {property: 'opacity', duration: 400});
        (function(){(function(){myFx.start(0.25,1).chain(
            function(){ this.start(0.25,1); },
            function(){ this.start(0.25,1); }
        );}).periodical(5000);}).delay(2000);


        function reveal(id) {$(id).morph({'opacity':1});}
        $$('#features li').each(function (e1, i) {reveal.delay(200*i, reveal, e1);});
        $$('#features li').addEvent('mouseover', function () {this.morph({'background-position': ['0 0', '0 '+ ($random(2,5)*25) +'px']});});

        var p;
        p = $('ujf_3042').getPosition('body');
        $('ujf_3042').setStyles({'opacity': 0, 'visibility': 'visible'}).morph({left:[p.x+10, p.x], top:[p.y-10, p.y], opacity: 1});


        var hilinks = ['m_contact_us', 'ujf_video', 'jfx-1631_link', 'ujf-706_link'];
        hilinks.each(function (e1) {
            $(e1).set('morph', {duration: 400}).addEvent('mouseover', function (){this.morph({'opacity':[0.5, 1]});});
        });

    if ($('m_brochures')) {
        $('m_brochures').addEvents({
            'mouseover': function () {
                //var p = $('m_brochures').getPosition();
                p = {x:0,y:0};
                var e = $$('#m_brochures ul')[0];
                e.setStyles({left: p.x-70, top: p.y+0});
                e.morph({opacity: 1});
            }
            ,'mouseleave': function () {
                var e = $$('#m_brochures ul')[0];
                e.morph({opacity: 0});
            }
        });

        $$('#m_brochures ul')[0].set('opacity', 0).set('morph', {duration: 400});
        }
});



