var windowopen=function(url,name) {
    theWindow=window.open(url,name,'channels=no,directories=no,height=656,location=no,menubar=no,resizable=no,scrollbars=no,titlebar=no,toolbars=no,width=900');
    theWindow.focus();
};
window.addEvent('domready',function() {
    $each($$('.fade'), function(el) {
        el.setStyle('opacity','0');
        var morph = new Fx.Morph(el,{ 'duration':'25000' });
        morph.start({ 'opacity':'100' })
    });
    $$('a').each(function(a){
        if(a.get('rel')) {
            if(a.get('rel')!='_blank') {
                a.addEvent('click',function(event){
                    windowopen(a.get('href'),a.get('rel'));
                    window.location.href='contact/772';
                    return false;
                });
            }
        }
    });
});