jQuery(function($){
    /*--Initalizers--*/
    $('.ad-container .images').shuffle()
    .cycle({
        timeout: 3500,
        speed: 350
    });
    
    viewport.init();
    
    $('#upper-slideshow .images').shuffle()
    .cycle({
        timeout: 3000,
        speed: 420
    });
    
    $('.ads a').live('click', function(){
        ad = $(this).attr('target','_blank').parent('ad')[0];
        try { pageTracker._trackEvent('Ads', 'Click', ad.alt, ad.title); }
        catch(err) {}
        return true;
    });
});

