﻿
        $(document).ready(function(){
            //$(".customer").hide();
            //$(".customer:first").show();  
        });
    
    function showCustomer(id){
        if( id=="null") return;
        if( id=="all" ){
            $(".customer").show("medium");
        }else{
           // $(".customer").hide( "medium", function(){  $("#" + id).show("medium");} ); 
            
            $("div .customer").each( function(){ return $(".customer").css("display") == "block";} ).hide();
            $("#" + id).fadeIn("medium");
        } 
        
    }