// JavaScript Document

function check(){
	if ((document.getElementById('user').value == "") || (document.getElementById('password').value == "")) {
		alert("I campi user e password devono essere valorizzati.")
		return false;
	} 
	
	return true;
}

function mmenu(mID) {
	var menu = $('#' + mID);
	menu.slideToggle('slow');
}

/* Apertura pop-up */
function openPopup(url, name, w, h, s){
	var prop = "width=" + w + ", height=" + h + ", scrollbars=" + s + ", top=100, left=100";
	window.open(url, name, prop);
}

function showFaqOnLoad(){
	if(window.location.hash != ''){
		if(window.location.hash.indexOf('#faq-') > -1) {
			id = window.location.hash.replace('#faq-', "");
			if(document.getElementById('submenu-' + id))
				var menu = $('#submenu-' + id);
				menu.slideToggle('slow');
		}
	}
}

function showGlossarioOnLoad(){
	if(window.location.hash != ''){
		if(window.location.hash.indexOf('#glossario-') > -1) {
			id = window.location.hash.replace('#glossario-', "");
			if(document.getElementById('submenu-' + id))
				var menu = $('#submenu-' + id);
				menu.slideToggle('slow');
		}
	}
}

$(document).ready(function () {
	$('input.txt').bind('focus', function () { $(this).val(''); });
	$('#headers').cycle({ 
    fx:    'fade', 
    speed:  5000 
 });
});
