function startSlideshow(el,delayTime){
    jQuery(el+' .cycle').cycle({
        fx:     'fade',
        timeout: 7000,
        speed: 2000,
        delay: delayTime  
    }).click(function (){
        //window.console.log(jQuery(this).attr("href"));
        document.location.href = jQuery(this).attr("href");
    });
}
