/*
RSG Menu Speech Bubble - to draw attention to the new Tools section.
Created By: Mitch Gohman
Date: 2010-02-21
With much love to JQuery - the javaScript browser equalizer
*/
function speech_moveOut() {
	$("#speechBubble").animate({'opacity':'0'},1000,function() { $(this).hide(); });
}

function speech_moveIn() {
		$("#speechBubble").css({
			'display':'block',
			'top':'-200px'
		});
	
		$("#speechBubble").animate({'top':'5px'},2000,function(){
				setTimeout(speech_moveOut,6000);
			});
}

$("document").ready(speech_moveIn);
