var myQuotes = new Array();
myQuotes[0] = "\"In every organization there are two distinct cultures at play: the leadership culture and the employee culture.\"";
myQuotes[1] = "\"Strategy, brand and culture are crucial to the success of every organization. Together they create the powerful alchemy that motivates a company.\"";
myQuotes[2] = "\"If you don’t know where you’re going, any road will take you there. The first step to knowing where you’re going is knowing where you are—right now.\"";
myQuotes[3] = "\"No competitive advantage can be sustained by accident. It must be purposeful and top leaders must make it a clear priority.\"";
myQuotes[4] = "\"No competitive advantage can be sustained by accident. It must be purposeful and top leaders must make it a clear priority.\"";
myQuotes[5] = "\"We see training as episodic. We see learning and development as something that drives sustainable organizational performance.\"";
myQuotes[6] = "\"Too often, employees have only a nebulous conception of their company’s brand. This is why so few brands are truly world-class.\"";

$(document).ready(function(){
	var myRandom = Math.floor(Math.random()*myQuotes.length);
	$('#header-quote').html(myQuotes[myRandom]);
});

