// execute your scripts when DOM is ready. this is a good habit
$(function() {		
		
	// initialize scrollable with mousewheel support
	$(".scrollable").scrollable({ vertical: true, mousewheel: true });	
	$(".scrollablenieuw").scrollable({ vertical: true, mousewheel: true });	

});


$(function() {
  $ ('ul.tweets li:even').addClass ('even');
  $ ('ul.tweets li:odd').addClass ('oneven');
});

