$(document).ready(function() {
	$("#game-detail .devices p").hide();
	$("#game-detail .devices a").click(function() {
		$(this).parents("h3").next().toggle("fast");
		return false;
	});
});
