$(document).ready(function(){
    $('#countryList').css({opacity:0});
    $('#coverframe').css({opacity:0});

    $('#countrySelector').click(function(){
            //        $('#coverframe').animate({top:-336, height:297}, 600);
            $('#countryList').css('display','block');
            $('#countryList').animate({top:-229, height:214, opacity:1}, 600, null, function(){$(this).find('ul').fadeIn()});
    });

    $('#countryList > a.closeX').click(function(){
        $('#coverframe').animate({top:0, height:0, opacity:0}, 600);
        $('#countryList>ul').fadeOut().parents('#countryList').animate({top:0, opacity:0, height:0}, 600, null, function(){$(this).css('display','none')});
    });
    $('#countryList > ul > li > a').click(function(){
        $('#coverframe').animate({top:0, height:0, opacity:0}, 600);
        $('#countryList>ul').fadeOut().parents('#countryList').animate({top:0, opacity:0, height:0}, 600, null, function(){$(this).css('display','none')});
    });
});
