$(document).ready(function(){
	
	/* Popup menu */
	$('#menu .popup').mouseenter(function(){
		$('#menu .popupMenu').hide();
		$(this).parents('li').children('.popupMenu').show();
	});
	$('#menu .popupMenu').mouseout(function(){
			//	$(this).hide();
	});
	
	
	var img = 1;
	function animate()
	{
		$('#animate-' + img).fadeOut('slow', function(){
			img = (img == 9) ? 1 : img + 1;
			$('#animate-' + img).fadeIn('slow', function(){
				setTimeout(animate, 4000);
			});
		});
	}
	animate();
});