$(document).ready(function(){    
    $('div.c9').slideshow({
    	width:200,
    	height:400,
    	play:true
    }).find("img").click(function(event,ui){
    	if(this.parentNode.href.length>0){
    		document.location.href=this.parentNode.href;
    	}
    });
});
