﻿$(function () {

    //  Create the navigation
    $(".navigation ul li").hover(
        function () {
            $(this).find("ul").show();
        },
        function () {
            $(this).find("ul").hide();
        }
    );

    //  check for country cookies
    var visitorCountry = getCookie("country");

    if (visitorCountry != null && visitorCountry != "") {
        
        //  user has been before, no need to do anything

    }
    else {

        //  redirect to API lookup to find their country
        window.location = "/my-country.html";
    }
});

function setCookie(c_name, value, exdays) {
    var exdate = new Date();
    exdate.setDate(exdate.getDate() + exdays);
    
    var c_value = escape(value) + ((exdays == null) ? "" : "; expires=" + exdate.toUTCString());
    document.cookie = c_name + "=" + c_value;
}

function getCookie(c_name) {
    var i, x, y, ARRcookies = document.cookie.split(";");
    
    for (i = 0; i < ARRcookies.length; i++) {
        x = ARRcookies[i].substr(0, ARRcookies[i].indexOf("="));
        y = ARRcookies[i].substr(ARRcookies[i].indexOf("=") + 1);
        x = x.replace(/^\s+|\s+$/g, "");
        if (x == c_name) {
            return unescape(y);
        }
    }
}
