$(function(){


	$('#MenuChats').mouseleave(function(){
		$('#MenuChats').fadeOut('fast');
	});
	$('#MenuBlogs').mouseleave(function(){
		$('#MenuBlogs').fadeOut('fast');
	});
	$('#MenuForums').mouseleave(function(){
		$('#MenuForums').fadeOut('fast');
	});
	$('#MenuContact').mouseleave(function(){
		$('#MenuContact').fadeOut('fast');
	});
	$('#MenuRechercher').mouseleave(function(){
		$('#MenuRechercher').fadeOut('fast');
	});
	
	$('#menubanniere').mouseleave(function(){
		$('#MenuChats').fadeOut('fast');
		$('#MenuBlogs').fadeOut('fast');
		$('#MenuForums').fadeOut('fast');					   
		$('#MenuContact').fadeOut('fast');					   
		$('#MenuRechercher').fadeOut('fast');
	});
	
	$('#livesearch').mouseleave(function(){
		$('#MenuRechercher').fadeOut('fast');
	});
	

	
	$('#rub1').hover(function() {
		$('#MenuChats').delay(100).slideDown('fast');
		$('#MenuBlogs').fadeOut('fast');
		$('#MenuForums').fadeOut('fast');
		$('#MenuContact').fadeOut('fast');
		$('#MenuRechercher').fadeOut('fast');
	});	
	$('#rub2').hover(function() {
		$('#MenuBlogs').delay(100).slideDown('fast');	
		$('#MenuChats').fadeOut('fast');
		$('#MenuForums').fadeOut('fast');
		$('#MenuContact').fadeOut('fast');
		$('#MenuRechercher').fadeOut('fast');
	});
	$('#rub3').hover(function() {
		$('#MenuForums').delay(100).slideDown('fast');
		$('#MenuChats').fadeOut('fast');
		$('#MenuContact').fadeOut('fast');
		$('#MenuRechercher').fadeOut('fast');
		$('#MenuBlogs').fadeOut('fast');
	});
	$('#rub4').hover(function() {
		$('#MenuContact').delay(100).slideDown('fast');
		$('#MenuChats').fadeOut('fast');
		$('#MenuRechercher').fadeOut('fast');
		$('#MenuBlogs').fadeOut('fast');
		$('#MenuForums').fadeOut('fast');
	});	
	$('#rub5').hover(function() {
		$('#MenuRechercher').delay(100).slideDown('fast');
		$('#MenuChats').fadeOut('fast');
		$('#MenuBlogs').fadeOut('fast');
		$('#MenuForums').fadeOut('fast');
		$('#MenuContact').fadeOut('fast');
	});	

});