var f_caricato;
var sid_fin;
var ultima_gallery;
function vis_utente(id, sid, nome,ricarica){
	/*
	 Visualizzazione via ajax della gallery di un utente
	 Solo per utenti registrati
	 */
	ultima_gallery="vis_utente("+id+",'"+sid+"','"+nome+"','0');";
	$('#finestrella').hide();
	$('#loading').show();
	if (ricarica == 0) {
		$('#finestrella').load('vis_utente.php?sid=' + sid, {
			id: id
		}, function(){

			$("#gallery").jqGalView({
				modal: true,
				title: nome,
				openTxt: "Clicca!",
				backTxt: "Torna all'indice",
				goFullSizeTxt: "",
				tnease: "easeOutSine"
			});
			$('#loading').hide();
			$('#finestrella').fadeIn('slow');
		});
	} else {
		$('#finestrella').load('vis_utente.php?sid=' + sid, {
			id: id
		}, function(){
			$.getScript('../js/jquery.js', function(){
				$.getScript('../js/jqGalView.js', function(){
					$.getScript('../js/easing.js', function(){
						$.getScript('../js/jqModal.js', function(){
							$("#gallery").jqGalView({
								modal: true,
								title: nome,
								openTxt: "Clicca!",
								backTxt: "Torna all'indice",
								goFullSizeTxt: "A tutto schermo",
								tnease: "easeOutSine"
							});
							$('#loading').hide();
							$('#finestrella').fadeIn('slow');
						});
					});
				});
			});
		});
	}

}

function mia_gallery(sid,formcaricato){
	if(!formcaricato)formcaricato=false;
	$('#finestrella').hide();
	$('#loading').show();
	$('#finestrella').load('mia_gallery.php?sid=' + sid, {
		id: 0
	},  function(){
		$('#finestrella').fadeIn('slow');
			$('#loading').hide();
			$('#finestrella').fadeIn('slow');
			if (formcaricato) {
				$('#foto_galleria').ajaxForm();
			}else{
				$.getScript('../js/form.js', function(){
					$('#foto_galleria').ajaxForm();
				});
			}
	});
}
function classifica(sid) {
	$('#id_classifica').hide();
	$('#loading').show();
	$('#id_classifica').load('classifica.php?sid=' + sid, {
		id: 0
	},  function(){
		$('#id_classifica').fadeIn('slow');
			$('#loading').hide();

	});
}

