$(function() {
	$('.main-menu li').hover(
		function(){
			$('ul', this).fadeIn('fast');
			$('ul ul', this).hide();
		},
		function() {
			$('ul', this).fadeOut('fast');
		}
	);
	setTimeout("$('#flashMessage').fadeOut('slow')", 3500);
});
