﻿$(function() {
init();
tabdropdown.init("bluemenu")
}
);

function init() {
    $(".searchbtn").bind("click", function() {
        location.href = "article/search.aspx?wd=" + encodeURI($(".search").val());
    })

    $(".search").keydown(function(event) {

        if (event.keyCode == 13)
            location.href = "article/search.aspx?wd=" + encodeURI($(".search").val());

    });

    $(".ul3 li:first-child a").css("font-weight", "bold");
}
