// Script for getStarted.html
jQuery(document).ready(function() {
	// Set up the pop-up description bubbles
	jQuery("#btns a")
		.mouseover(function() {
			jQuery("#btns .bubbleCnt").hide(); // hide any other bubbles that might be open
			jQuery(this).next(".bubbleCnt").show(); // show the current bubble
			setTimeout('jQuery("#' + jQuery(this).attr('id') + '").next(".bubbleCnt").hide()', 2500); // hide the bubble after a timeout
		});
});