// JavaScript Document by Bolle Media
$(document).ready( function(){ 

// Menu
$("#dropdown").droppy();

// Fader
$('#fader').innerfade({ 
	animationtype: 'fade', 
	speed: 2000, 
	timeout: 10000, 
	type: 'random', 
	containerheight: '1em'
})

// Elastic
$('#textarea').elastic();

// Validation
// $('.nieuwsbriefform').validation();
$('#contactform').validation();
$('#zoekform').validation();
$('.bestelform').validation();

// Twitter
$('#twitter').jTweetsAnywhere({
	username: 'lucaskramer',
	count: 5,
	showFollowButton: true
});

// Scroll naar top
$('.backtotop').click(function(){
	$('html, body').animate({scrollTop:0}, 'slow');
});

});
