// JavaScript Document
$(document).ready(function() {

	//Default Action
	$(".tab_content").hide(); //Hide all content
	$("ul.tabs li:first").addClass("active").show(); //Activate first tab
	$(".tab_content:first").show(); //Show first tab content

	//On Click Event
	$("ul.tabs li").click(function() {
		$("ul.tabs li").removeClass("active"); //Remove any "active" class
		$(this).addClass("active"); //Add "active" class to selected tab
		$(".tab_content").hide(); //Hide all tab content
		var activeTab = $(this).find("a").attr("href"); //Find the rel attribute value to identify the active tab + content
		$(activeTab).fadeIn(); //Fade in the active content
		return false;
	});

	//Default Action
	$(".subtab_content").hide(); //Hide all content
	$("ul.subtabs li:first").addClass("active").show(); //Activate first tab
	$(".subtab_content:first").show(); //Show first tab content

	//On Click Event
	$("ul.subtabs li").click(function() {
		$("ul.subtabs li").removeClass("active"); //Remove any "active" class
		$(this).addClass("active"); //Add "active" class to selected tab
		$(".subtab_content").hide(); //Hide all tab content
		var activeTab = $(this).find("a").attr("href"); //Find the rel attribute value to identify the active tab + content
		$(activeTab).fadeIn(); //Fade in the active content
		//Apply scrolling
		if ( $(activeTab).find('.content_scroll').hasClass("ascroll") == false ) {
			$(activeTab).find('.content_scroll').addClass('ascroll').scrollbar();
		}
		return false;
	});
	
	//On Click Event
	$("ul.subtabs_formazione li").click(function() {
		$("ul.subtabs_formazione li").removeClass("active"); //Remove any "active" class
		$(this).addClass("active"); //Add "active" class to selected tab
		$(".subtab_content_formazione").hide(); //Hide all tab content
		var activeTab = $(this).find("a").attr("href"); //Find the rel attribute value to identify the active tab + content
		$(activeTab).fadeIn(); //Fade in the active content
		return false;
	});

	$('#gallery a').lightBox();
	$('.fff').scrollbar();

});
