﻿//practice navigation.
jQuery(document).ready(        
    function()
    {                                            
        $('.practiceNavigationParentNode').click(
            function() 
            {	                 	                    	                   	    	 
                $('.practiceNavigationParentNode').each(
                    function()
                    {	                            
                        $(this).next().slideUp("fast");
                    }
                );	
                        
                $(".nav_active").hide();
                        
                if (!$(this).next().is(":visible"))                        
                    $(this).next().slideDown("slow", 
                        function()
                        {
                            $(".nav_active").show();
                        }   
                );                                                                                                   
                                                
                return false;
            });                        
        }    
);