function words(){

	$('#flyer-words').fadeIn(1000, slideshow_delay);
}

function slideshow_delay(){

	setTimeout(intro_out, 2000);
}
function intro_out(){

	$('#intro').fadeOut(500, slideshow);
}
function slideshow(){

	$('#slideshow').fadeIn(500)
    $('#slideshow').cycle({
		fx: 'fade', timeout: 5000
	});
}

$(document).ready(function() {

$('#logo-amci').animate({ marginLeft: '0', opacity: 'show' }, 2500);
$('#logo-regence').animate({ marginRight: '0', opacity: 'show' }, 2500);

$('#flyer').fadeIn(3000, words);

$("#menu li").hover(
	function(){
	$(this).css('background-image', 'url(/modules/default/images/button-hover.gif)');
	},
	function(){
	$(this).css('background-image', 'url(/modules/default/images/button.gif)');
	}
);	
	
});
