jQuery(function( $ ){

$('#Slideshow').cycle({
fx: 'scrollHorz',
speed: 900,
timeout: 8000,
pager: ".SlidesNav",
before: onBefore,
pagerAnchorBuilder: function(idx, slide) {  return '<a href="#">'+ jQuery(slide).find("img").eq(0).attr('title') +'</a>'; }

});

function onBefore() { 
    $('#Slideshow').css("z-index", "1");
}



});


