

//jQuery(document).ready(function () {
jQuery(function ($) {
    jQuery("a").focus(function(event) {
        this.blur();
    });

    jQuery("#family-site").change(function(event) {
        var url = jQuery("#family-site option:selected").attr('value');
        //if (url) location.href = url;
        if (url) window.open(url);
    });

    $('#tSearch').submit(function() {
        if (!$('#top-search-keyword').val().length) {
            $('#top-search-keyword').focus();
            return false;
        }
        return true;
    });

    $('#top-search-keyword').focus(function() {
        this.select();
    });

});
