$(document).ready(function() {
	$("#slideshow").css("overflow", "hidden");


	$('#slideshow img').click(function (){
      document.location.href = $(this).attr('rel');
    }).css('cursor', 'pointer');	



	$("#slides").cycle({
		fx: 'fade',
		
		pause: 8,
		prev: '#prev',
		next: '#next', 
		before: onBefore,
    	after:   onAfter,
		containerResize: false
		/*$('#output').html(this.alt);*/
		/*$('#caption1').html("<a href=" + this.href + ">" + this.title + "</a>");*/
	});
	/*
	$("#slideshow").hover(function() {
    	$("ul#nav").fadeIn();
  	},
  		function() {
    	$("ul#nav").fadeOut();
  	});
	*/
});





