var flashRatio = 420/560;
function swapLocation(id) {
    $.get("./ajax/get-location.php", {id: id}, function(data) {
		var json = eval("("+data+")");
        
        if ($('ul.EnglishPage').length)
            $('#areaContent').html("<h1>"+json.attributes.title+"</h1>"+json.attributes.text_right_column);
        else if ($('ul.FrenchPage').length)
            $('#areaContent').html("<h1>"+json.attributes.title+"</h1>"+json.attributes.french_text);
        else
            $('#areaContent').html("<h1>"+json.attributes.title+"</h1>"+json.attributes.russian_text);
            
        var imagesHTML = '<img src="' + json.attributes.image_right_column.source + '" alt="" />';
        //check if the other images are available
        if (json.attributes.image_right_column2.source) {
            imagesHTML += '<img src="' + json.attributes.image_right_column2.source + '" alt="" />';
        }
        if (json.attributes.image_right_column3.source) {
            imagesHTML += '<img src="' + json.attributes.image_right_column3.source + '" alt="" />';
        }
        $('#areaImg').html(imagesHTML);
        //initialise the slideshow
        slide_init();
		//so_init();
	});
}

function resizeMap() {
    $('#flashcontent').css("height", flashRatio * (document.body.offsetWidth - 680 ));
}

$(document).ready(function() {
    resizeMap();
});