window.addEvent('domready',function() {

	// Make the lava flow
	var menu = new LavaMenu('lavaLamp');
	var menu2 = new LavaMenu('lavaLamp-sub');

	// Search box default value
	$('search').getElements('input[name=query]').addEvents({
		'focus': function() {
			if (this.value == 'Zoeken') {
				this.value = '';
			}
		},
		'blur': function() {
			if (!this.value) {
				this.value = 'Zoeken';
			}
		}
	});

// tooltip(images tooltip)
       var t = new Tips('.tip');
        $$('.tip').each(function(tip){
		var imgSrc = tip.retrieve('tip:text');
		var imgAlt = tip.retrieve('tip:title');
		tip.store('tip:text', new Element('img',{'src':imgSrc,'alt':imgAlt}));
	});

	myCal = new Calendar({ date: 'd/m/Y' }, { direction: 1 });
});