
function init() {

    var tabs = document.getElementsByTagName('a') ;
    for (i = 0; i < tabs.length; i++) {
        var id = tabs[i].id
        ids = id.split('_')
        if (ids[0] == 'tab') {
            setQuote(ids[1])
        }
    }
}

var quotes = {
      1:'Thank you very much for your proactive, relevant and reliable help|International HR Director,<br>Manufacturing',
      2:'Your assistance was invaluable during our office and staff relocation. Thank you for making the process so painless and with minimal disruption to the business.|Andre Marot,<br>Managing Director<br>Grand Prix Models,<br>Oxfordshire',
      4:'Invaluable advice, whatever the size of the business.<br><br>Extremely responsive and always there if you need them!|Steve Wells<br>Director,<br>Hogsmill Ltd',
      5:'HR Consultants helped us considerably and professionally with HR cover and advice, both for "day to day" activities and for the exceptional circumstances that dynamic environments throw at you.<br><br>A thoroughly professional service assisting us with company acquisition, office relocation, creating and rolling out a benefits package, company policies, recruitment and selection, redundancies, and employment law advice.|Nick Applegarth,<br>Managing Director, EMEA,<br>Envox Worldwide',
      6:'I was especially pleased to work with someone who is not afraid to make the difficult decisions and tell it like it is. There are not many HR people like you!|Manager, Transport industry'
}

function setQuote(i) {

    var elem = document.getElementById('leftBottom_' + i)

    if (quotes[i]) {
        var quote = quotes[i].split('|')
        elem.innerHTML =
           '<p>"<i>' + quote[0] + '</i>"</p>' +
           '<p class="right">' + quote[1] + '</p>'
    } else {
        elem.className = 'invisible'
    }
}
