var btnId=['homeloans-hover','insurance-hover','property-hover','echoice-hover'],
    SlideInterval=0;

$(function() {
    $('#slideshow').cycle({
		fx: 'fade', 
		timeout: SlideInterval,
		pager:'.promo-left',
                pause:1
	});
	
	
	$('.promo-left a').each(function(i) {
	   if(i==0)
	    $(this).empty().wrap("<div id='"+btnId[i]+"' class='activeSlide' />");
	   else
		$(this).empty().wrap("<div id='"+btnId[i]+"' />");
	});
});

