﻿function fixMenus() {
	var firstMenu=document.getElementById('navigation').getElementsByTagName('a')[0];
	firstMenu.style.backgroundPosition='top left';
	var subMenu=document.getElementById('subMenu');
	if (subMenu) {
		var firstSubMenu=subMenu.getElementsByTagName('li')[0];
		firstSubMenu.style.paddingLeft=0;
		firstSubMenu.style.backgroundImage='none';
	}			
}
addLoadEvent(fixMenus);

// openGallery: opens the gallery and the selected image. Before opening the gallery it will check if the gallery DIV exists - if not it will create one
// createGallery: will create a div for the gallery to be created in
// closeGallery: will hide the gallery from the page
//
