<!--
setInterval(function() {

$(function() {

if ($('.copy p:contains("1")').length > 0) {
    $(".copy p").html("this is zurich"); //message here
}

});

$(function() {

if ($('.copy p:contains("2")').length > 0) {
    $(".copy p").html("this is barclays");
}

});

$(function() {

if ($('.copy p:contains("3")').length > 0) {
    $(".copy p").html("this is the third");
}

});

$(function() {

if ($('.copy p:contains("4")').length > 0) {
    $(".copy p").html("this is the fourth");
}

});

$(function() {

if ($('.copy p:contains("5")').length > 0) {
    $(".copy p").html("this is the fith");
}

});


  
$(function() {
if ($('.copy p:contains("6")').length > 0) {
    $(".copy p").html("this is the sixth");
}
});
    }, 100); 
-->
