// JavaScript Document

$(document).ready(function() {
							
				//apertura e chiusura livelli di difficoltˆ
				$('#livelli').hide();
				$('a#apri_livelli').click(function() {
				$('#livelli').show(400);
				$('#livelli_cont').hide(100);
				return false;
				});
				$('a#chiudi_livelli').click(function() {
				$('#livelli').hide(400);
				$('#livelli_cont').show(100);
				return false;
				});
				
				
				//apertura e chiusura FAQ
				$('#faq').hide();
				$('a#apri_faq').click(function() {
				$('#faq').show(400);
				$('#faq_cont').hide(100);
				return false;
				});
				$('a#chiudi_faq').click(function() {
				$('#faq').hide(400);
				$('#faq_cont').show(100);
				return false;
				});

$("a[rel]").overlay();
$("#featured").tabs().tabs("rotate", 5000, true);  
});
