$(document).ready(function(){
    $("#color_table td").mouseover(function (){
        var index = "";
        $("#foto img").hide();
        var index = $(this).attr("id");
        var index1 = index + "Pic";
        var picture = $("#"+index1);
        picture.show();
        $("#descript div").hide();
        var index = $(this).attr("id");
        var index1 = index + "Des";
        var picture = $("#"+index1);
        picture.show();
        var index = "";
    });
    $("#color_tables td").mouseover(function (){
        $("#fotos img").hide();
        var index = $(this).attr("id");
        var index1 = index + "Im";
        var picture = $("#"+index1);
        picture.show();
        $("#descripts div").hide();
        var index = $(this).attr("id");
        var index1 = index + "Tx";
        var picture = $("#"+index1);
        picture.show();
    });

});
