function showTable(imageCode){
    if ((document.getElementById(imageCode).style.display=="") || (document.getElementById(imageCode).style.display=="none")){
        //jQuery(".product_color_table").css("display", "none");
        $$(".product_color_table").each(function(el){
            el.style.display = "none";
        });
        document.getElementById('color-size-block').style.display	= "block";
        document.getElementById(imageCode).style.display	= "block";
    }
    else{
        //document.getElementById(imageCode).style.display	= "none";
        //document.getElementById('color-size-block').style.display	= "none";
    }
}

jQuery(document).ready(
    function(){
        jQuery(".each_color_selector").attr("href", "javascript:void(0)");
        jQuery(".each_color_selector").each(function(){
           jQuery(this).click(function(){
showTable(jQuery(this).attr("icon"));
});
        });
    }
);