﻿// JScript File
$(document).ready(
    function() {
        $('ul#newsNav li').click(
            function() {
                $('ul#newsNav li ul').each(
                    function() {
                        $(this).fadeOut('fast').removeClass('isOpen');  
                    }
                )    
                $(this).animate({opacity:1.0},1500);            
                $(this).children('ul').fadeIn("slow");
                $(this).children('ul').addClass("isOpen");
            }
        );
    }
);

