Buy me a coffee

#376582

<script>
$(document).ready(function() { 
        $("nav.Heaer-nav--secondary>div>span:nth-child(4)>a").click(function() {
            var link = $(this).text(),
                href = "/info";
            window.location.href=href;
        });
    $("nav.Heaer-nav--secondary>div>span:nth-child(3)>a").click(function() {
            var link = $(this).text(),
                href = "/Renting-With-Mojo";
            window.location.href=href;
        });
    $("nav.Heaer-nav--secondary>div>span:nth-child(2)>a").click(function() {
            var link = $(this).text(),
                href = "/campervan-rental-1";
            window.location.href=href;
        });
    $("nav.Heaer-nav--secondary>div>span:nth-child(1)>a").click(function() {
            var link = $(this).text(),
                href = "/the-mojo-sleepervan-1";
            window.location.href=href;
        });
});
</script>