function showSublevel(id)
{
	var el = $("sub_"+id);
	if(el.style.display == "none"){
		el.style.display = "block";
	} else {
		el.style.display = "none";
	}
}
function getGallery(id)
{
	new Ajax.Request
	(
	homePart+"/admin/modules/includes/fotogallery/design/front.php",
	{
		method: 'post',
		parameters: 'ajax=ok&id='+id,
		onComplete : function(req) {
			$('galss').innerHTML=req.responseText;
			new Effect.Opacity($('gallery'),{duration:2, from:0, to:1});
			setTimeout("$('gallery').show()",500);
			setTimeout("myLightbox.updateImageList()",1500);
		}
	}

	);
}
