
function uruchomGal(id_fotek){
	if (id_fotek!='-1'){
		var tablica=id_fotek.split(',');
		var foto_array=new Array();
		
		for (i=1; i<tablica.length; i++){
			adres="http://snapshots.pl/download/file.php?id="+tablica[i];
			
			lnk='<a href="http://snapshots.pl/viewtopic.php?t='+tablica[0]+'">przejdz do tematu</a>';
			
			foto_array.push(new Array(adres,lnk));
		}
		jQuery.slimbox(foto_array, 0);
		
	}
}

function uruchomGalALLFotos(id_fotek){
	if (id_fotek!='-1' && id_fotek!=''){
		var tablica=id_fotek.split(',');
		var foto_array=new Array();
		
		for (i=0; i<tablica.length; i++){
			adres="http://snapshots.pl/download/file.php?id="+tablica[i];
			
			foto_array.push(new Array(adres,''));
		}
		jQuery.slimbox(foto_array, 0);
	}
}

$().ready(function(){
	
	
});





