var CurrentSelected = null;
function selectGallery( iID ){
	if ( CurrentSelected ) {
		$$( 'image'  + CurrentSelected ).className = 'gallery';
		$$( 'titleA' + CurrentSelected ).style.fontWeight = '100';
		$$( 'titleA' + CurrentSelected ).style.fontSize 	= '12px';
	}
	$$( 'image'  + iID ).className = 'gallery selected';
	$$( 'titleA' + iID ).style.fontWeight 	= 'bold';
	$$( 'titleA' + iID ).style.fontSize 	= '11px';
	CurrentSelected = iID;
}

function galleryLocation( oSelect ) {
	iGalleryID = parseInt( oSelect.options[oSelect.selectedIndex].value );
	sUrl = '/'+__LANG__+'/gallery/photolist/id-' + iGalleryID + '.htm'
	if ( isNaN( iGalleryID ) ) sUrl = '/'+__LANG__+'/gallery.htm';
	window.location.href = sUrl;
}
