
function inizializzaGalleria(){
	$("#pikame_user").PikaChoose({user_thumbs:true, show_prev_next:false, slide_enabled: false});
}

function galleria(valore){
	if(valore!=0){
	$("#galleryShow").remove();
	$.post("function.inc.php",{azione:"showGallery", valore:valore}, function(data){ $("#contentGallery").html(data);});
	}
}

function openPostForum(idPost) {
	if(idPost!=""){
		$.post("function.inc.php",{azione:"openPostForum", idPost:idPost}, function(data){ $(".postContent").html(data);});
		}
}

function submitFormPost() {
	var dati = $("#formPostInsert").serialize(); 
	$.post("function.inc.php",{azione:"insertPostForum", dati:dati}, function(data){ $(".postContent").html(data);});

}

function submitFormTitlePost() {
	var dati = $("#formPostInsert").serialize(); 
	$.post("function.inc.php",{azione:"insertPostForum", dati:dati}, function(data){ $(".postContent").html(data);});

}

function deleteThisForm(IDPost, div) {
	if(confirm("Eliminare questo post?"))
	$.post("function.inc.php",{azione:"deletePostForum", IDPost:IDPost}, function(data){ $(div).parent().hide();});	
}

function deleteThisPostTitle(IDPostTitle,div) {
	if(confirm("Eliminare questo post?"))
	$.post("function.inc.php",{azione:"deletePostTitleForum", IDPostTitle:IDPostTitle}, function(data){ $(div).parent().hide();});	
}
