var ref = $.query.get('ref');
if(($('body').attr('id') == 'index') && (ref != 'in')) {
	swfobject.registerObject("intro", "9.0.0", "images/expressInstall.swf");
}

$(document).ready(function() {


if(((!navigator.userAgent.match(/iPhone/i)) && (!navigator.userAgent.match(/iPod/i)) && (!navigator.userAgent.match(/iPad/i))) && ($('body').attr('id') == 'index') && (ref != 'in')) {
	$('#wrapper').hide();
	$('body').css({ 'overflow' : 'hidden' });
	$('#splash-anim').fadeIn();
}
	
	/*slideshow home */
	var currentImage = $("#gallery img:first");
	currentImage.fadeIn();
	
	$(document).everyTime("4s", function(i) {
		currentImage.fadeOut();
		currentImage.next().fadeIn();
		if(currentImage.next().is("img")) {
			currentImage = currentImage.next();
		} else {
			currentImage = $("#gallery img:first");
			currentImage.fadeIn();
		}
	});
	
	/* gallery azienda */
	$("a[rel=gallery]").fancybox({
				'transitionIn'		: 'none',
				'transitionOut'		: 'none',
				'titlePosition' 	: 'over'
			});
	
});

function hideSplash() {
	$('#wrapper').show();
	$('#splash-anim').fadeOut('slow', function() {
        $('body').css({ 'overflow' : 'auto' });
      });
}



