function pickQuote(){
	var quote=[];
	quote[0]='&ldquo;We have been impressed by nef consulting&rsquo;s responsiveness, expertise and down-to-earth professionalism. Their willingness to facilitate custom options and deliver tools focused on meaningful results, exceeded our expectations&rdquo;<br/><br/><b>CEO, SustainAbility Ltd, London &amp; New York</b>';
	quote[1]='&ldquo;The unique expertise you provide has tangible and overwhelmingly positive impacts on our organisational culture. Your innovation and real world approach to our requirements means we were able to trust in the process, and open ourselves up to change, bringing long-term value to staff development, and to our external impacts &ldquo;<br/><br/><b>Managing Director, World Development Movement, London</b>';
	quote[2]='&ldquo;The tool really helped to positively engage and integrate my team – without costing the earth! – and has empowered everyone to get more involved in cross-team working. I think it was particularly useful since quite a few of my team are relatively new and so it has given us all a chance to step back to review and develop our culture of positive behaviours...&ldquo;<br/><br/><b>Chief Executive, Our Life charity</b>';
	quote[3]='&ldquo;Service delivery: Excellent. The speed of delivering results was a major factor on choosing the NEF Consulting programme, it offers excellent value for money. The whole process enabled us to engage closely with staff - we would have no hesitation recommending the programme to others… We have learned a great deal&ldquo;<br/><br/><b>Head of HR and Organisation Development, The Coal Authority, Mansfield</b>';
	quote[4]='&ldquo;Nic Marks was exceptionally knowledgeable, and has a charismatic and engaging style. Andy Warby took time to understand our organisation, which paid dividends at the whole organisation briefing and interpretation. He was able to answer all staff questions in a way that reassured them about the sincerity of the programme&ldquo;<br/><br/><b>Safety, Health and Environment Advisor, The Coal Authority, Mansfield</b>';
	var randomnumber=Math.floor(Math.random()*5);
	var q=document.getElementById('quoteholder');
	q.innerHTML=quote[randomnumber];
}

$(window).load(function(){
	$('#subgo').click(function(e) {
		var hasError = false;
		var emailReg = /^([\w-\.]+@([\w-]+\.)+[\w-]{2,4})?$/;

		var emailToVal = $("#subemail").val();
		if(emailToVal == '') {
			alert('You forgot to enter the email address for the subscription');
			hasError = true;
		} else if(!emailReg.test(emailToVal)) {
			alert('Please enter a valid email address for your subscription.');
			hasError = true;
		}
		if(!hasError){
			$.post('http://test.bwa-communication.co.uk/6167/ajaxsubscribe.php',{email:emailToVal}, function(data) {alert(data);});
		}
		e.stopPropagation();
		e.preventDefault();return false;
	})
});
