
var fact_curr = 0;

var fact_list = new Array(
			"Evoke is reachable via serveral low cost airlines from all over Europe","Bauknecht had their breakthru at Evoke 2005","Evoke had about 300 visitors each year in the last years","Scene.org Award Nominee \'Die Ewigkeit schmerzt\' by Neuro was released at Evoke","Plastic released \'Final Audition\' at Evoke 2005","Scene.org Award Nominee \'Perfect Love\' by lkcc and Bauknecht was released at Evoke 2005","Equinox created one of the most loved invitations to date for Evoke 2004","Kolor and Freestyle released their Scene.org Award Nominee \'Graccus\' at Evoke 2002","Arcane has won Evoke 2000 wild compo with a heart-melting German song","An old C64 scener has donated plants from his market garden to Evoke 2003","Ryg/Farbrausch released his first 4k intro on Evoke 1999","Evoke is the second-oldest still alive demoparty in Germany","That Evoke is already 11 years old","Rob is Jarig won the demo compo in 2008 but did not receive any prizemoney."
);

function setFact(effect) {
	if (effect) $("#fact").hide();
		
	do {
		var pos = parseInt(Math.random() * ( fact_list.length ));
	} while (pos==fact_curr);
	
	fact_curr = pos;
	
	$("#fact").html(fact_list[pos]);
		
	if (effect) $("#fact").show("normal");
} 
	
window.onload = function(){ 
	setFact(); 
};
	
$(function() {
	$('.soclinks').tooltip({ 
    track: true, 
    delay: 0, 
    showURL: false
	});/*
	$('.twitlinks').tooltip({ 
    track: true, 
    delay: 0, 
    showURL: false,
	xtraClass:"twittooltip"
	});*/
});
