// JavaScript Document
$(document).ready(function(){


// cursor gaat over li
$("#buttons li").mouseover(function(){
$(this).stop().animate({height:'150px'},{queue:false, duration:800, easing:'easeOutBounce'})
});

// cursor gaat weg uit li
$("#buttons li").mouseout(function(){
$(this).stop().animate({height:'50px'},{queue:false, duration:800, easing:'easeOutBounce'})
});
});
