$(document).ready(function(){

	// hide #back-top first
	$("#menuflottant").hide();

	
	$("#menuflottant").html($("#nav_wrapper").html());
	$("#menuflottant").css("color","red");

	// fade in #back-top
	$(function () {
		$(window).scroll(function () {
			if ($(this).scrollTop() > 300) {
				$('#menuflottant').fadeIn();
			} else {
				$('#menuflottant').fadeOut(0);
			}
		});
	});

});
