﻿$(document).ready(function () {
    $("#nav ul li").attr("style", "z-index:900");
    $("#nav ul li").hover(function () {
        $(this).find("div").show();
        $(this).attr("style", "z-index:1000;border:2px solid #3aacdb;");
    }, function () {
        $(this).find("div").hide();
        $(this).attr("style", "z-index:900;border:2px solid #fff;");
    });


    $(".clickbox").hover(function () {
        $(this).find("div").show();
        $(this).attr("style","width:130px;");

    }, function () {
        $(this).find("div").hide();
        $(this).attr("style", "width:40px;");
    });

    
});
