function postiKusti()
{
    var posti = $('#yhteys').html();
    var osoite = posti + '&#64;';
    $('#yhteys').html("<a href='mailto:" + osoite + "vihreat.fi'> Ota yhteyttä</a>");
    $('#kirje').prependTo('#yhteys a');
}

function sideNavi()
{
    $('.left-menu-item').each(function(index) {
        $(this).click(function(event) {
            event.preventDefault();
            window.location.href = $(this).children('a').attr('href');
        });
    });
}

$(document).ready(function() {
	postiKusti();
    sideNavi();
});

