$(document).ready(function () {
	$("#spread").hover(
	function () {
		$(this).children("a").children("div#spread-text").animate({top: "0"}, 400, "swing");
	},
	function () {
		$(this).children("a").children("div#spread-text").animate({top: "-230px"}, 400, "swing");
	});
	$("a.hover").css({"position" : "relative", "text-decoration" : "none"}).removeClass("hover").hover(
	function () {
		$(this).children("span").fadeIn();
	},
	function () {
		$(this).children("span").fadeOut();
	});
});

