function show()
{
//if ($("#cat").)
// $("#cat").hide("slow");
// else
if ($("#cat").css("display")=="none")
   $("#cat").show("slow"); 
 else
   $("#cat").hide("slow"); 
   
}
function getphoto (id_cat, id) {
      $.ajax({
        type: "POST",
        data: "categ="+id_cat+"&id="+id,
        url: "/catalog_pictures.php",
        success : function(msg){ $("#photos").html( msg ); }, 
        beforeSend : function(){ $("#photos").html( '<img src="/images/design/loading.gif" style="padding-top:202px;"/>' );  } 
    });
    }//);