function onAfter() {
}

$(document).ready(function(){
    $('#s1').cycle({ 
        fx:     'fade', 
        timeout: 4000, 
        after:   onAfter 
    });

    $('.testimonial .name').before('<img src="resources/media/quote_end.gif" alt="Quote Ends"/>')
        
    $('#nav a').each(function(){
        if(uri==$(this).attr('href') || (uri=='index' && $(this).attr('href')=='') ){
            $(this).addClass('selected');
        }
    });
    
    $('.rb_box .inner').before('<div style="height:11px;line-height:.1em;"><img src="resources/media/rb_box_top.gif" alt="Quote Ends"/></div>')
    $('.rb_box .inner').after('<div style="height:11px;line-height:.1em;"><img src="resources/media/rb_box_bottom.gif" alt="Quote Ends"/></div>')
    
    
    $('a[rel*=external]').click( function() {
        window.open(this.href);
        return false;
    });
});

