﻿
        $(document).ready(function(){
            // 
            //$("h2").css("display", "none");
            $("#content h3").each( function(i){
                var inner = $(this).text();
                var othertxt = (inner.toLowerCase() == "technology alliances")? " <span>[show System Integrators]</span>": " <span>[show Technology Alliances]</span>";
                $(this).html( inner +  othertxt);
                $(this).find("span").addClass("hand");
                $(this).find("span").click(
                    function(){
                        $("div.alliances").each( function(){ $(this).toggle(); });
                        //$("#headextra div").each( function(){ $(this).toggle(); });
                        doFooter();
                    }
                );
            });
            $("div.alliances:gt(0)").hide();
        });
        
       
        
   
    