$(document).ready(function(){

	
    //When mouse rolls over
    $("#top-nav ul li").mouseover(function(){
        $(this).stop().animate({width:'72px'},{queue:false, duration:200, easing: 'easeOutBounce'})
    });

    //When mouse is removed
    $("#top-nav ul li").mouseout(function(){
        $(this).stop().animate({width:'25px'},{queue:false, duration:1, easing: 'easeInBack'})
    });

	


});
