    function showButton()
    {
        var theWord = getWord();
	var wordDiv = $('submit_button');
	var button = $('imgButton');	
	

	//var oldHtml = button.innerHTML;
        wordDiv.innerHTML = '<div ><span id="hrsLogged">' + theWord + '</span></div>';
	button.hide();
	new Effect.Appear(wordDiv, {duration:0.1});
	setTimeout(function() {Effect.Fade(wordDiv);}, 2000);
	setTimeout(function() { wordDiv.hide(); Effect.Appear(button, {duration:0.1});}, 4000);
 

    }

    function getWord()
   {
	var logged_words = new Array(
		'Hours flogged',
		'Cha-ching!',
		'I love my job',
		'Shazam!',
		'Time for coffee',
		'Break time',
		'Done, finally',
		'Hallelujah!',
		'About time, too',
		'Ta da!',
		'Wasn\'t that fun?',
		'You\'re the best',
		'Take that!',
		'Giddyup',
		'You are a genius',
		'Life is good',
		'Good work',
		'Good stuff',
		'Nice job',
		'Nice stuff',
		'Giddy-up',
		'Bingo Bango',
		'Blam',
		'Zoink',
		'Oh Snap!',
		'POW!',
		'Pay Day!',
		'Presto',
		'Damn The Man!',
		'Blame Canada!',
		'Client says: \"Ouch!\"');

	var word_length = logged_words.length;
	var random_num = Math.ceil(Math.random() * word_length);
	return logged_words[random_num];
	
   }
