	$(document).ready(function() {
				$("#accordion").accordion({
				collapsible: "true",
				autoHeight: "false",
				clearStyle: "true",
				header: "h3"
				});

				$(".alphaContent").each(function() {
				var start = $(this).attr("start");
				var end = $(this).attr("end");
				var catele = $(this);
				$.get("alpha_lookup.cfm", {
					"start" : start,
					"end" : end},
				function(data) {
						catele.append(data);
					});
			});

			$(function(){
				//hover states on the static widgets
				$('#dialog_link, ul#icons li').hover(
					function() { $(this).addClass('ui-state-hover'); }, 
					function() { $(this).removeClass('ui-state-hover'); }
				);
				
			});

		});
	
