$(document).ready(function() {
	$('#slide').cycle({
		fx:     'fade',
		sync:   1,
		random: 0,
		speed:  1000,
		timeout: 8000,
		delay:  8000,
		next: '#s_prawo',
		prev: '#s_lewo'
	});
	
	$('#menu_t li').hover(function() {
		$(this).children('ul').css('display', 'block');
	}, function() {
		$(this).children('ul').css('display', 'none');
	});
});
