Event.observe( document, 'dom:loaded', function(){
    new Draggable( $('Yoohoo'), { starteffect: null, endeffect: null });
    new Bubble( $('InteractiveLink'), $('InteractiveBubble') );
    new Bubble( $('OutsourcedLink'), $('OutsourcedBubble') );

    $$('.hire_us_trigger').each( function(elem){
        elem.on('click', function(e){
            e.stop();
            var content = $('HireUsForm').innerHTML;
            //$('HireUsForm').update();
            new Popup( content, 569 );
        });
    });
});

