$(document).ready(function(){
	//SEARCH INPUT
	$('div.topMenu form.search input').focus(function(){
		this.value = '';
		$(this).animate({'width' : '+=50'}, 250);
	}).blur(function(){
		var defval = 'Zoeken'
		var val = this.value;
		if(val && val != defval){
			this.form.submit();
		}else{
			this.value = defval;
			$(this).animate({'width' : '-=50'}, 250);
		}
	});
	
	//DROPDOWN MENU
	$('div.topMenu div.parent').hover(function(){
		$(this).addClass('hover');
		$('div.children:first', this).css({'display' : 'block'}).fadeTo((($.browser.msie) ? 0 : 150), 1, function(){
			$(this).css('filter', 'none');
		});
	}, function(){
		$(this).removeClass('hover');
		$('div.children:first', this).fadeTo((($.browser.msie) ? 0 : 150), 0, function(){
			$(this).css({'display' : 'none'});
		});
	});
	
	//FEATURED
	$('div.features div.wrap').featured({
		interval	: 8000,
		start		: 0
	});
	
	//SLIMBOX
	$("a[rel^='slimbox']").slimbox({
		loop: false,
		overlayOpacity: 0.8,
		overlayFadeDuration: 0,
		resizeDuration: 250,
		resizeEasing: "swing",
		initialWidth: 250,
		initialHeight: 250,
		imageFadeDuration: 200,
		captionAnimationDuration: 200,
		counterText: "Afbeelding {x} van {y}"
	});
});
