﻿//$(function() {
//    $("#themNav").hover(function() {
//        $("#selectName").stop(true, true);
//        $(this).addClass("themNavShow");
//        $("#titleThem").addClass("titleThemShow");
//        $("#selectName").slideDown(600);
//    }, function() {
//        $("#selectName").stop(true, true);
//        $("#selectName").slideUp(600, function() {
//            $("#themNav").removeClass("themNavShow").addClass("themNav");
//            $("#titleThem").removeClass("titleThemShow").addClass("titleThem");
//        });
//    });
//});



function show() {
    document.getElementById("themNav").className = "themNavShow";
    document.getElementById("titleThem").className = "titleThemshow";
    var obj = document.getElementById("selectName");
    obj.style.display = "block";


}

function hide() {
    document.getElementById("themNav").className = "themNav";
    document.getElementById("titleThem").className = "titleThem";
    var obj = document.getElementById("selectName");
    obj.style.display = "none";

}

