$(document).ready(function() {
    $(function() {
        $('#slideshow_images').cycle({
        delay:  2000, 
        speed:  500, 
        before: showTestimonial 
        });
    });
     
    function showTestimonial() { 
        $('#slideshow_info').html(this.alt); 
    };
    
    $('a[rel*="external"]').click(function(){
    this.target='_blank'; 
    });
    
    $(document).pngFix();
});
