﻿var hideTimer;
$(function(){
    $("#country-select").mouseover(function(){
        showMenu();
        clearTimeout(hideTimer);
    }).mouseout(function(){
        clearTimeout(hideTimer);
        hideTimer = setTimeout('hideMenu()',1000);
    });
    $("ul","#country-select").mousemove(function(){
        clearTimeout(hideTimer);
    }).mouseout(function(){
        clearTimeout(hideTimer);    
        hideTimer = setTimeout('hideMenu()',1000);
    });
});
function hideMenu(){
    $("ul","#country-select").hide();
}
function showMenu(){
    $("ul","#country-select").show();
}
