$a(document).ready(function() {
	/*$a("#slideshow").css("overflow", "hidden");*/
	
	$a("ul#slides").cycle({
		fx: 'fade',
		pause: 1,
		timeout: 6000,
		prev: '#prev',
		next: '#next',
		//onPrevNextEvent: show_alert
	});
	
	$a("#slideshow").hover(function() {
    	$a("ul#nav").fadeIn();
  	},
  		function() {
    	$a("ul#nav").fadeOut();
  	});
	/*
	function show_alert(){
		alert($('#slides').find('li').css('display: block'))
		//alert(s_display);
	}
	*/
});
