$(document).ready(function () {
    
    $("#Results .result-iframe").colorbox({
        iframe: true,
        title: function () { return $(this).attr("title"); },
        width: "520px",
        height: "600px"
    });
    
    $("#SlideShow").slideshow({
        speed: 10000
    });
    
    $("#Results").slideshow({
        speed: 10000,
        delay: 500,
        random: true
    });
    
    $("#Testimonials").slideshow({
        speed: 10000,
        delay: 1000,
        random: true
    });
    
});

