﻿
$(function () {
    //$("ul#MDD_topnav>li>ul").css("display","none");
    //$("ul#MDD_topnav>li>ul").css("opacity","0");
    // on mouse over
    $("ul#MDD_topnav>li>a").hover(function () {
        // animate opacity to full 
        $(this).next("ul").css("display", "block");
        $(this).next("ul").stop().animate({ width:600 }, 100);
    },
    // on mouse out
		function () {
		    // animate opacity to nill
		    $(this).next("ul").stop().animate({ width: 0 }, 100);
		     $(this).next("ul").css("display", "none");
		});


    // on mouse over
    $("ul#MDD_topnav>li>ul").hover(function () {
        // animate opacity to full
          $(this).css("display", "block");
          $(this).stop().animate({ width: 600 }, 10);
    },
    // on mouse out
		function () {
		    // animate opacity to nill
		        $(this).css("display", "none");
		        $(this).delay(1000).stop().animate({ width: 0 }, 100);
		});
});

