function imgSwitch () {
   var $imgL = $("#prodImgL");
    
   $("li", $imgL).each(function(){
        if($(this).html()==""){
            $(this).remove();
        } else {
            $(this).hide();
        }
   });
   $("#prodImgL > li:first").show();
   var $imgS = $("#prodImgS");
   if($("#prodImgL > li").length==1){
      $imgS.remove();
   } else {
       var i = 0;
       $("li", $imgS).each(function(){
            if($(this).html()==""){
                $(this).remove();
            } else {
                $(this).css("border", "1px solid #CCCCCC");
                $(this).click(function() {
                    switchCorrespondant(this);
                });
            }
            i++;
       });
    }
}
function switchCorrespondant(me){
    $("#prodImgL > li").hide();
    $('#'+me.id+'_L').show();
}
function hidercm(){
    if($("#rcmItemArea li").length==0){
        $("#rcmItemArea").remove();
    }
}

