// JavaScript Document

var imgName;

$(document).ready(function() {
                $("#menuPrincipal img").hover(
                    function() {
                            imgName=$(this).attr("src").replace(".png","Over.png");
                            $(this).attr("src",imgName);
                    },
                    function() {
                            imgName=$(this).attr("src").replace("Over.png",".png");
                            $(this).attr("src",imgName);
                    }
                )
				
				$("#productosA img").hover(
                    function() {
                            imgName=$(this).attr("src").replace(".jpg","over.jpg");
                            $(this).attr("src",imgName);
                    },
                    function() {
                            imgName=$(this).attr("src").replace("over.jpg",".jpg");
                            $(this).attr("src",imgName);
                    }
                )
				
				$("#productosB img").hover(
                    function() {
                            imgName=$(this).attr("src").replace(".jpg","over.jpg");
                            $(this).attr("src",imgName);
                    },
                    function() {
                            imgName=$(this).attr("src").replace("over.jpg",".jpg");
                            $(this).attr("src",imgName);
                    }
                )
				
				$("#productosFamilia img").hover(
                    function() {
                            imgName=$(this).attr("src").replace(".jpg","Over.jpg");
                            $(this).attr("src",imgName);
                    },
                    function() {
                            imgName=$(this).attr("src").replace("Over.jpg",".jpg");
                            $(this).attr("src",imgName);
                    }
                )
				
});

