$(document).ready(function() {
	$("#slideshow").css("overflow", "hidden");

	$('#slideshow').cycle({
	    fx: 'fade',
	    speed: 'slow',
	    timeout: 5000,
	    pager: '#slidenav',
	    pagerAnchorBuilder: function (idx, slide) {
	        return '<a href="#">&nbsp;</a>';
	    },
	    slideExpr: 'div.slide'
	});
	
});
