$(document).ready(function() {
	$("#home .dock").Fisheye({
		maxWidth: 80,
		items: "a",
		itemsText: "span",
		container: ".shows",
		itemWidth: 100,
		proximity: 100,
		valign: "bottom",
		halign : "center"
	});
	$("#dither, #popover .middle .close a").click(function(e) {
		which	= $("#popover .middle").children(".active").attr("class").match(/^\w+/);
		fade_out("#popover .middle ." + which);
		e.stopPropagation();
	});
	$("#home .blurb .news").click(function() {
		fade_in("#popover .middle .articles");
	});
});