	var lyrics=new Array(6)
	lyrics[0] = "All that you love, All that you hate, All you distrust, All you save.";
	lyrics[1] = "All that you give, All that you deal, All that you buy, beg, borrow or steal.";
	lyrics[2] = "All you create, All you destroy, All that you do, All that you say.";
	lyrics[3] = "All that you eat, And everyone you meet, All that you slight, And everyone you fight.";
	lyrics[4] = "All that is now, All that is gone, All that's to come, and everything under the sun is in tune, but the sun is eclipsed by the moon. ";
	lyrics[5] = "All that you touch, All that you see, All that you taste, All you feel.";



$(document).ready(function(){
	setTimeout('hideSubtitle()',4400);
	var tweet = $('#header_subtitle');
	var i = -1;
	var slideshow = setInterval(function(){
		var val = lyrics[++i] || lyrics[i=0];
		tweet.slideUp(function(){
			$(this).text( val ).slideDown();
		});
	},5000);
});

function hideSubtitle() {
	$('#header_subtitle').slideDown();
}


