// This is the setup for the tiptip tool tip effect
		 $(document).ready(function() {
			// TipTip
			$(".tiptip").tipTip({maxWidth: "auto", edgeOffset: 4, delay: 250, fadeIn: 100, fadeOut: 800});
			// simple toggle effect
			$('#test').find('dd').hide().end().find('dt').click(function() {
		    $(this).next().slideToggle();
			return false;
				});
		 });