
function extendForms() {
	params = {
	    galleryClass: 'gallery'
	};
	FSite2.extendForm(document, params);
}

function showGallery(id) {
	var item = document.getElementById('gallery_container_' + id);
	var item_a = item.getElementsByTagName('a')[0];
	item_a.onclick();
}

