// JavaScript Document
$(document).ready(function () {
		
	$('.botonmen').mouseenter(function() {
		$(this).children(":first").css({"visibility":"visible"});
	});
	
	$('.botonmen').mouseleave(function () {
		$(this).children(":first").css({"visibility":"hidden"});						   
	});
	$('.ProductoI').mouseenter(function() {
		$(this).children(":first").css({"visibility":"visible"});
	});
	
	$('.ProductoI').mouseleave(function () {
		$(this).children(":first").css({"visibility":"hidden"});						   
	});
});
