$("#mainpage form button").button();

// Show more clubs
var clubsList = $("#clubsMemberOf");
clubsList.next().click(function(event) {
	event.preventDefault();
	var totalHeight = clubsList.get(0).scrollHeight;
	clubsList.animate({ height: totalHeight }, "medium");
	clubsList.next().animate({ height: "hide", opacity: "hide" }, "fast").css("color", "green");
});

clubsList.find("span.img").each(function() {
	if (-1 === this.innerHTML.indexOf('<')) {
		$("<img/>").load(function() {
			$(this).fadeIn("slow");
		}).attr("src", this.innerHTML).appendTo(this);
	}
});

// Silly IE breaks the links sometimes
if ($.browser.msie && $.browser.version < 8.0) {
	$("ul a.item").live("click", function() {
		window.location.href = this.href;
	});
}