﻿$(document).ready(function () {
    $(".MenuPart_ul_li a").mouseover(function () {
        $(this).parent().parent().children("li").children("ul").slideUp();
        $(this).next().slideDown();
        return false;
    })
    $(".MenuPart_ul_li a").click(function (){
        $HREF=$(this).attr("href");
        if($HREF =="")
        {
            return false;
        }
    })
})
