function randnum()
{
	var random_number=Math.floor(Math.random()*(4))
	return (random_number)
}
	
	
function quoteit(num) 
{
var random_quote = new Array()


random_quote[0] = "As a multi-national manufacturer we needed our safety procedures to be consistent across all our sites and reported back to head office in real time.  Using Mango™, an excellent SaaS application, enabled us to achieve this.  The deployment of our procedures took less than one month - Diane Evans, Group Human Resources Manager"


random_quote[1] = "To attain ISO 9001:2004 certification Compass needed an application that was easy to deploy and easy to use for the 120+ employees across 4 districts.  Mango™ achieved this.  The application has enabled not only employees but also clients to have their issues captured and dealt with by the organisation.  This has meant faster response times to all of our stakeholders. - Clare Nolan, Clinical Administrator. Compass Health is ISO 9001:2000 certified."


random_quote[2] = "As General Manager/Accountant for a group of companies with over 200+ employees I was looking for an application that would run all of my compliance programmes as an integrated system at the same time being transparent to all staff.  With Mango™ being user friendly and available anywhere, anytime it meets my needs in a very cost effective manner. - Paul Allott, General Manager/Accountant. Rooney Group are ISO 9001:2000, ISO 14001 and AS/NZS 4801 certified."


return (random_quote[num])

}



function quotecomp(num)
{
var quote_comp = new Array()
quote_comp[0] = "<strong>Skellerup Industries</strong><p></p>"
quote_comp[1] = "<strong>Compass Health</strong><p></p>"
quote_comp[2] = "<strong>Rooney Group</strong><p></p>"


return (quote_comp[num])
}


function quotelink(num)
{
var quote_link = new Array()
quote_link[0] = "http://www.skellerup.co.nz/"
quote_link[1] = "http://www.compasshealth.org.nz/"
quote_link[2] = "http://www.rooneygroup.co.nz/"

return (quote_link[num])
}






