$(document).ready(function() {
	$("#menu img").animate({"opacity": "0.30"}, "fast");
	$("#menu img").hover(
 		function(){	
			$(this).stop().animate({"opacity": "1"}, "fast");
		},
 		function(){	
			$(this).stop().animate({"opacity": "0.30"}, "fast");
		}
	);
	
});

function wyswietl_page(gdzie){

var divh = document.getElementById('#p_'+gdzie).offsetHeight;
$('#page').style.height = ( divh + 460 ) + "px";

}

function startUpload(){
	  $("#f1_upload_process").fadeIn();
	  $('#f1_upload_form').hide(); 
      return true;
}

function stopUpload(){
      $('#f1_upload_process').fadeOut();
	  $('#lista-foto').fadeOut("slow").load('_admin_dodaj_pliki.php').fadeIn("slow");
      return true;   
}

function usunfoto(foto) {
		advAJAX.post({
       		url : "_akcja_usun.php",
       		parameters : {
			"foto" : foto
       },
    onSuccess : function(obj) {	$('#imgs-'+foto).slideUp(600);}
    });
}

function strona_galu(str1) {
	advAJAX.get({
       		url : "galeria_list.php",
       		parameters : {
			"str1": str1
       },
    onSuccess : function(obj) {
		document.getElementById('galeria11').innerHTML = obj.responseText;
	}
    });
}
