$(document).ready(function() { 
	$("#nb_home_button").mouseenter(function() {
		$("#navbar_home_desc").stop(true, true).fadeIn(200);
	});
	$("#nb_home_button").mouseleave(function() {
		$("#navbar_home_desc").stop(true, true).fadeOut(200);
	});
	
	$("#nb_news_button").mouseenter(function() {
		$("#navbar_news_desc").stop(true, true).fadeIn(200);
	});
	$("#nb_news_button").mouseleave(function() {
		$("#navbar_news_desc").stop(true, true).fadeOut(200);
	});
	
	$("#nb_about_button").mouseenter(function() {
		$("#navbar_about_desc").stop(true, true).fadeIn(200);
	});
	$("#nb_about_button").mouseleave(function() {
		$("#navbar_about_desc").stop(true, true).fadeOut(200);
	});
	
	$("#nb_contact_button").mouseenter(function() {
		$("#navbar_contact_desc").stop(true, true).fadeIn(200);
	});
	$("#nb_contact_button").mouseleave(function() {
		$("#navbar_contact_desc").stop(true, true).fadeOut(200);
	});
});

