$(document).ready(function(){

	$('a.gallery').lightBox({fixedNavigation:true});
	$('a.facebox').facebox({
		loadingImage: _IMAGES_URI+'/facebox/loading.gif',
		closeImage: _IMAGES_URI+'/facebox/closelabel.gif'
	});


	$('.slideshow').accessNews({
		speed : "normal",
		slideBy : 1
	});


	if(_STILE == 'normale'){
	    var cover = $('<div></div>');
	    cover.css({
		    'width': '100%',
		    'height': $('body').height()+'px',
		    'position': 'absolute',
		    'top': '0px',
		    'left': '0px',
		    'opacity': '.01',
		    'filter': 'alpha(opacity=1)',
		    'z-index': '100',
		    'display': 'none'
	    });
	    $('body').prepend(cover);

	    $('#styles ul').css({
		    'display': 'none',
		    'z-index': '101'
	    });
	    $('#langs ul').css({
		    'display': 'none',
		    'z-index': '101'
	    });

	    $('#styles').click(function(){
		    $('#styles ul').toggle('normal', function(){
			    cover.css('display', $('#styles ul').css('display'))
		    });
	    });

	    $('#langs').click(function(){
		    $('#langs ul').toggle('normal', function(){
			    cover.css('display', $('#langs ul').css('display'))
		    });
	    });
	}

	cover.click(function(){
		$('#styles ul').hide('normal');
		$('#langs ul').hide('normal');
		$(this).hide();
	});

	$('#banner').goslide({timeout: 5000});

});

