////////////////////////////////////////////////////
// SITE SPECIFIEK
////////////////////////////////////////////////////

function clearText(thefield)
{
    if (thefield.defaultValue==thefield.value)
        thefield.value = ""
}


////////////////////////////////////////////////////
// EVEN HANDLERS
////////////////////////////////////////////////////

Event.observe(window, 'load', function() { 
    var topMenu = new Menu('topVerLeft');
    if (typeof(slideshowImages) != 'undefined') {
        var slideshow = new Slideshow('header2', slideshowImages, {
            beforeChange: function() { 
                $('links-' + this._index).hide();
            },
            afterChange: function() {
                $('links-' + this._index).show();
            }
        });
    }
} );

document.observe('dom:loaded', function() { 
	var links = $A($('header2').getElementsByTagName('a'));
	links.each(function(link) {
		Element.setOpacity(link, 0);
	} );
});
