jQuery(function(){
	jQuery("#info>div:last").addClass("active");
	jQuery("#info>div").not(".active").hide();
	var len = jQuery("#info>div").length;
	var rand = Math.floor(Math.random()*len);
	jQuery("#more_info a").click(function(){
		var next = jQuery("#info>div.active").next();
		if(!next.is("div")) next = jQuery("#info>div:first");
		jQuery("#info>div.active").removeClass("active").fadeOut();
		next.addClass("active").fadeIn();
		return false;
	});
});