/* 
 * To change this template, choose Tools | Templates
 * and open the template in the editor.
 */

var $j = jQuery.noConflict();

$j(document).ready(function() {

    $j("#nav li").hover(function() {
        $j(this).find(".nav_sub_menu").each(function() {
            $j(this).stop(true, true);
            $j(this).animate({
                height: 'show',
                opacity: 1
            }, 500);
        });
    }, function() {
        $j(this).find(".nav_sub_menu").each(function() {
            $j(this).stop(true, true);
            $j(this).delay(200).animate({
                height: 'hide',
                opacity: 0
            }, 500);
        });
    });

});




