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

	/* Menu. */
	$$('#menu li').addEvents({

		// Mouse enter.
		mouseenter: function(e) {

			// Add hover class. 
			this.addClass('hover');

		},

		// Mouse leave.
		mouseleave: function() {

			// Remove hover class.
			this.removeClass('hover');

		}

	});


	/* Voorstellingen box. */
	if($$('#voorstellingen-box #zoeken-section')) {

		// Default value.
		var defaultValue = $$('#voorstellingen-box #zoeken-section input').getValue();

		$$('#voorstellingen-box #zoeken-section input').addEvent('focus', function() {
			if (this.getValue() == defaultValue) {
				this.value = '';
			}
		});

		$$('#voorstellingen-box #zoeken-section input').addEvent('blur', function() {
			if (this.getValue() == '') {
				this.value = defaultValue;
			}
		});

		$$('#voorstellingen-box #zoeken-section .button a').addEvent('click', function() {
			$$('#voorstellingen-box #zoeken-section form').submit;
		});

	}

	/* Faq */
	if($$('#faq-box')) {

		$$('#faq-box h5 a').addEvent('click', function(e) {

			e.preventDefault();

			// Check if active?
			if (this.getParent().getParent().className == 'active') {
				this.getParent().getParent().className = 'item';
			} else {
				this.getParent().getParent().className = 'active';
			}

		});

	}
	
	if($('youtube-binnenkort')) {

		var params = {
			wmode: 'transparent'
		};
		
		var atts = {};

		swfobject.embedSWF('http://www.youtube.com/v/' + sYoutube + '&rel=0&fs=1&hd=1&showinfo=0', 'youtube-binnenkort', '280', '166', '8', null, null, params, atts);

	}

});