/*
 * attorneys toggle
 */
$(document).ready(function() {    
                 
                   $("h1.toggle").toggle (
                      function() {
                        $("div.dropdown").show("fast");
                        $(this).addClass("toggleon");
                      
                     },
                     function() {
                        $("div.dropdown").hide("fast");
                        $(this).removeClass("toggleon");
                      
                     });
                });

/*
 * attorneys print button
 
 
 */
 
 function printWindow(){
	   bV = parseInt(navigator.appVersion)
	   if (bV >= 4) window.print()
	}
