$(document).ready(function() {
	$('#slideshow').cycle({
		fx:		'fade',
		speed:	1500,
		timeout:	4000,
		pager:  '#slideshow_nav',
		pagerAnchorBuilder: function(i) {
			var el = $("#slideshow img:eq("+i+")")
			el.click(function() {
				document.location = $(this).attr("href")
			})
			//return "<li><a href='javascript:;' title='"+el.attr("alt")+"' alt='"+el.attr("alt")+"'>&nbsp;</a></li>"
			return "<li><a href='javascript:;' title='"+el.attr("alt")+"' alt='"+el.attr("alt")+"'>&nbsp;</a></li>"
    	}
	})
})

