function UpdateGallery(url) { ShowMenu(); $.get('/_inc/GalleryHandler.php?' + url, function(transport) { $('#GalleryImage').html(transport); FixSlider(); FixMenu(); } )}
function FixSlider() { $('#Gallery').cycle({ fx: 'fade', timeout:  5000, next: '#next', prev: '#prev', after: onAfter }); };
function FixMenu() { $('#pause').toggle( function() { $('#Gallery').cycle('pause'); $(this).val('Fortsätt'); }, function() { $('#Gallery').cycle('resume'); $(this).val('Pausa'); } ) }
function ShowMenu() { $('#GalleryImage').after('<div id="SlideMenu" class="center"><input type="button" id="prev" class="fleft" value="Föregående" /><input type="button" id="next" class="fright" value="Nästa" /><input type="button" id="pause" class="center" value="Pausa" /></div>'); }
function onAfter() { $('#output').html(this.title); }
function EraseImage(url) { $.get('/_inc/GalleryHandler.php?action=delete&imageID=' + url, function(transport) { $('#image-' + url).hide('slow'); } )}
function PopupImage(id, cat) { window.open('/contentPopup.php?page='+id+'&category='+cat, 'image', 'toolbar=no, location=no, directories=no, status=no, menubar=no, scrollbars=yes, resizable=no, width=500, height=600, top=200, left=200'); }
function wclose() { self.close(); }
