/******************************************************************************************************************/
// INTRO
/******************************************************************************************************************/

var current = -1;
var num = 4;

function loopSlides(){
	current++;
	if (current >= num) current = 0;
	
	$('#intro .current').animate({ width: 60 }, { queue: false, duration: 400 });
	$('#intro li:eq('+ current +')').animate({ width: 760 }, { queue: false, duration: 400 });	
	
	$('#intro li').removeClass('current');
	$('#intro li:eq('+ current +')').addClass('current');	
	
	mytimer = setTimeout('loopSlides()', 5000);
}

function handleIntro(){
	$('.slider').css({ opacity: 0.8 });
	
	loopSlides();
	
	$('#intro .slider').click(function(){
		if (!$(this).parents('li').hasClass('current')){	
			
			clearTimeout(mytimer);
			
			current = $('#intro .slider').index(this) - 1;
			loopSlides();			
		}
		
		return false;
	});
}

/******************************************************************************************************************/
// LOAD ESEMPI
/******************************************************************************************************************/

//function handleEsempi(){
//    $.ajax({
//        url: 'http://choweb.it/esempi_nuovi/wp-content/plugins/bee_change_theme/ajax/get_themes.php',
//        success: function(data) {
//            alert(data);
//        }
//    });
//}

/******************************************************************************************************************/
// On document load...
/******************************************************************************************************************/

$(function(){
	// fancy box
	$('.fancybox').fancybox({
		type: 'iframe',
		width: 600,
		height: 500
	});
	
	// fancy box
	$('.preview').fancybox({
		type: 'iframe',
		width: 1200,
		height: 800
	});
	
	// intro
	handleIntro();

    $("#frm-contact").validate();
    
});
