$(document).ready(function() {
    
$('.slideshow').cycle({
    startingSlide: 0,
    fx:     'fade',  
    speed:  'slow', 
    timeout: 7000, 
    pager:  '.control'

});

for(var slnr=0;slnr<8;slnr+=1)
		$('.control > a').each(function(slnr) {
		$(".control a").eq(slnr).html($('<div class="slide-title">' + $('.slideshow div').eq(slnr).attr('title') + '</div>'))});
						  
						  });
			



