﻿
$(document).ready(function () {
    $(".nav_cat").hover(
		function () {
		    $(".nav_cat_hover", this).stop(true, true).fadeIn();		    
		    $(".nav_topic_holder", this).stop(true, true).fadeIn();
		},
		function () {
		    $(".nav_cat_hover", this).fadeOut();		    
		    $(".nav_topic_holder", this).fadeOut();
		})


		$(".nav_row").mouseenter(
        function () {
          $(this).stop(true, true).addClass('nav_over');          

            //$("#nav_lnk", this).stop(true, true).removeClass('lnk_blk');            
            //$("#nav_lnk", this).stop(true, true).addClass('nav_over_white', 500);            
        });



		$(".nav_row").mouseleave(
     function () {
       $(this).stop(true, true).removeClass('nav_over');
       
         //$("#nav_lnk", this).stop(true, true).removeClass('nav_over_white');
         //$("#nav_lnk", this).stop(true, true).addClass('lnk_blk', 500);                 
     });
});
