$(document).ready( function(){

	/* Create the presentation text to every main navigation title */

	var showText = "";
	
	$("#site-menu a.sifr-ghost").hover( function(){
		var themeId = $(this).attr("id");
		if (themeId == "tn1") 
		{
			showText = "<h3>THE MAIN PROGRAMME</h3><p>The most interesting productions from Finland  and celebrated guest performances from abroad.</p>";		
		}	
		else if (themeId == "tn2") 
		{
			showText = "<h3>THE PROGRAMME TENT</h3><p>A club-style arena for a wide variety of performing arts, small scale drama, dance and music.</p>";		
		}	
		else if (themeId == "tn3") 
		{
			showText = "<h3>CLUB FESTIVAL ENCOREBAANA</h3><p>Performances, improvisation theatre, stand up shows and music for free in a restaurant surroundings.</p>";		
		}
		else if (themeId == "tn4")
		{
			showText = "<h3>OFF TAMPERE</h3><p>A multifaceted fringe programme provides a stage for anyone to participate.</p>";
		}
		else if (themeId == "tn5") 
		{
			showText = "<h3>THE GREAT NOCTURNAL HAPPENING</h3><p>A carnevalesque art event that takes over the whole city of Tampere..</p>";		
		}	
		else {
			showText = NULL;
		}
		$(this).closest("li").prepend("<div class=\"show-theme-text\" style=\"margin-left: -" + ($(this).width()/3) + "px;\">" + showText + "</div>");
	},
	function(){
		$(".show-theme-text").remove();
	});

});
