$(document).ready(function(){
	$('#slideshow').cycle({
		prev:   '#prev', 
    next:   '#next'
	});
	
	$('#accordion .text').hide();
	$('#accordion .text:first').show();
	$('#accordion .title').click(function(){
	 	$('#accordion .text').slideUp();
	 	$(this).next().slideDown();
	 	return false;
	});

});  
