// spit out quotes for top bar

var quotes_arr = Array();
quotes_arr[0] = '<h1><em>the</em> Heart <em>of</em> <br />Holistic Healthcare</h1> ';
quotes_arr[1] = '<h1 class="title_block_smaller">helping people feel better,<br />achieve more and lead happier lives</h1> ';
quotes_arr[2] = '<h1 class="title_block_smaller">are you a human <em>being</em> <br />or just a human <em>doing</em>?</h1> '; 




$(document).ready(function() {
	var randomnumber=Math.floor(Math.random()*3)
	$('#title_block').html(quotes_arr[randomnumber]);

	$('#title_block h1').fadeIn("slow");
});
