addEvent (window,'load',addToFavo,false);

function addToFavo ()
{
	var menu = document.getElementById('menu');
	var strong = menu.getElementsByTagName('strong')[0];
	var a = document.createElement('a');
	a.appendChild(document.createTextNode('| Voeg toe aan favorieten'));
	a.href = '#add';
	a.style.position = 'absolute';
	a.style.top = '3px';
	a.style.left = '105px';
	a.style.color = 'black';
	a.style.textDecoration = 'none';
	a.onclick = function ()
	{
		if (document.all)
		{
			window.external.AddFavorite(window.location.href,'Eastside Artists & Bookings');
		}
		else if (window.sidebar)
		{
			window.sidebar.addPanel('Eastside Artists & Bookings',window.location.href,'');
		}
		return false;
	}
	insertAfter (menu,a,strong);
}