/**
 * @author Ryan Adams
 */

$(document).ready(function(){
	$("div.bubble-box").each(function(){
			$("div.bubble-body", this).hide();
	});
	
	$("div.bubble-box div.bubble-link")
		.css({cursor:"pointer"})
		.click(function(){
			$(this).siblings("div.bubble-body").slideToggle("normal", function(){
				if ($(this).css("display") == "none") {
					true;
				} else {
					false;
				}
			});
		});
});

