/* Funcion de scroll del menu */
var name = "#floatMenu";
var menuYloc = null;

	$(document).ready(function(){
		menuYloc = parseInt($(name).css("top").substring(0,$(name).css("top").indexOf("px")))
		$(window).scroll(function () { 
			offset = menuYloc+$(document).scrollTop()+"px";
			$(name).animate({top:offset},{duration:500,queue:false});
		});
	}); 
 
/* Ocultar y mostrar menu */ 
$(document).ready(function()
{
  //toggle the componenet with class msg_body
  $("#menuHeader").click(function()
  {
  	$(this).next("#menuBody").toggle();
     });
});

