$(document).ready(function() {
	activegallery('galleria');
	activegallery('galleria_sede');
	
	//Inizializza Shadowbox
	Shadowbox.init();
});

function activegallery(classe){
	//Rimuove stile dell'immagine e attacca width fisso
	$('.'+classe+' .immagine img').removeAttr("width");
	$('.'+classe+' .immagine img').removeAttr("height");
	
	//Prende src dall'immagine e crea href esterno
	$('.'+classe+' .immagine img').each(function(){
		var src = $(this).attr('src');
		$(this).wrap('<a href="'+src+'" />');
	});
	
	//Applica titolo del Content nei tag A e IMG
	$('.'+classe+' .immagine').each(function(){
		var val = $(this).find('.titolo').text();
		if(val){
			$(this).find('a').attr("title",val);
			$(this).find('img').attr("alt",val);
		}		
	});
	
	//Applica rel per shadowbox agli href delle immagini
	$('.'+classe+' .immagine a').attr("rel","shadowbox["+classe+"]");
}

