$(document).ready(function() {

$('#slideshow').cycle({ 
    fx:     'fade', 
    speed:  'slow',
    speedIn: 1500,
    speedOut: 1500,
    timeout: 5000, 
	pager:  '#switcher', 
	cleartypeNoBg: true,
    slideExpr: 'img' ,
    after:     function() {
    		var altcontent = this.alt+' <a href="'+this.parentNode.href+'">Read more</a>';
    		$('#caption').html(altcontent);
    		
            //$('#caption').html(this.alt);
           }

           
});

});

