﻿function GetCountry() {
    var countryID = document.getElementById('selCountry').value;
    UploadEntry(37, countryID);
}

$(document).ready(function() {
    $num = $.randomBetween(1, 4);
    $path = 'Images/background_' + $num + '.jpg';
    $('.outer').css('background', 'url(' + $path + ')  no-repeat center top');
    $('.outer').css('margin', '0 auto');
    $('.outer').css('padding', '0');
});

function get_id(id) {
    var country = $('#id_country_' + id).html();
    $('#id_country').html(country);
    $('#selCountry').val(id);
    $('#dropdown_inner').css('visibility', 'hidden');
}

function show_countrylist() {
    $('#dropdown_inner').css('visibility', 'visible');
}