$(document).ready(function() {
	$("#menuProductos LI A").hover(
	  function () {
		var tipo = $(this).attr("tipo");
		$("#"+tipo).show();
	  }, 
	  function () {
		var tipo = $(this).attr("tipo");
		$("#"+tipo).hide();
	  }
	);
});

