window.addEvent('domready', function() {

	// Add to Browser Favorites
    if($('debookmarks_browser')!=null) {
    	$('debookmarks_browser').addEvent('click', function(){
    		if (window.sidebar)
    		{
    			window.sidebar.addPanel(titel, url, '');
    		}
    		else if(window.opera && window.print)
    		{
    			var operA = document.createElement('a');
    			operA.setAttribute('href',url); operA.setAttribute('title',titel); operA.setAttribute('rel','sidebar');
    			operA.click();
    		} 
    		else if(document.all)
    		{
    			window.external.AddFavorite(url, titel);
    		}
    	});
    }
	
	
	// User Message about the Bookmarking Services
	var array_children = $('deBookmarks').getChildren();
	
	// Event-Handler for each of the Bookmarking Icons
	$each(array_children, function(item){
		if(item !== $('debookmarks_clearfloat') && item !== $('space_message'))
		{
			item.addEvent('mouseover', function(){
				// get the help text
				var helptext = item.getChildren()[0].getProperty('alt');
				
				// Change the Help text
				$('space_message').innerHTML = helptext;
			});
			
			item.addEvent('mouseout', function(){
				// get the help text
				var helptext = '&nbsp;';
				
				// Change the Help text
				$('space_message').innerHTML = helptext;
			});
		}
		
	});

});
