$(document).ready(function() {
    
	$('.slideshow').cycle({
		fx: 'fade',
		timeout: 3000,
next: '#next',
prev: '#previous'
	});
	
	$('.button ul').hide();
	
	$('.button').mouseover(function() {
		$(this).find('ul').show();
	});
	
	$('.button').mouseout(function() {
		$(this).find('ul').hide();
	});		
});
