// JavaScript Document

$(function() {

	//replace font
	Cufon.replace('#menu a');
	Cufon.replace('a.email');
	
	if (navigator.mimeTypes && navigator.mimeTypes["application/x-shockwave-flash"] && $('.flashHome').length > 0) {
		// hasSupport
		//alert('flash support');
	}
	else {
		//alert('no flash support');
		visualizzaTuttoMenu();
		//alert('visualizzato menu');
	}

	//SHARE
	$('#sharethis').click(function() {
		if ($('#share').hasClass('close')) {
			$('#sharethis').parent().addClass('off');
			$('#share').fadeIn('fast');
			$('#share').removeClass('close');
			$('.close').click(function() {
				$('#share').fadeOut('fast');
				$('#share').addClass('close');
				$('#sharethis').parent().removeClass('off');
			});

		} else {
			$('#share').fadeOut('fast');
			$('#share').addClass('close');
			$('#sharethis').parent().removeClass('off');
		}

	});
	//Gallery
	if ($('.ad-gallery .ad-thumb-list li').size() > 0)
	var galleries = $('.ad-gallery').adGallery({
		loader_image: 'img/loader.gif',
		start_at_index: 0,
		description_wrapper: false,
		thumb_opacity: 0.7,
		animation_speed: 400,
		width: 510,
		height: 470,
		display_next_and_prev: false,
		display_back_and_forward: false,
		scroll_jump: 0, // If 0, it jumps the width of the container
		animate_first_image: true,
		slideshow: {
			enable: true,
			autostart: true,
			speed: 5000,
			start_label: 'Start',
			stop_label: 'Stop',
			stop_on_scroll: true,
			countdown_prefix: '(',
			countdown_sufix: ')',
			onStart: false,
			onStop: false
		},
		effect: 'fade', // or 'slide-vert', 'fade', or 'resize', 'none'
		enable_keyboard_move: false,
		cycle: true,
		callbacks: {
			init: false,
			afterImageVisible: false,
			beforeImageVisible: false
		}
	});

});



