$(document).ready(function(){
	
	//remove outline from links
	$("a").click(function(){
		$(this).blur();
	});
	
	//mouse rolls over
	$(".list").mouseover(function(){
		$(this).stop().animate({height:'29px'},{queue:false, duration:600, easing: 'easeOutBounce'})
	});
	
	//mouse is out
	$(".list").mouseout(function(){
		$(this).stop().animate({height:'22px'},{queue:false, duration:600, easing: 'easeOutBounce'})
	});
	
//active link
$(".active").click(function(){
		$(this).animate({ paddingBottom:0 }, 'fast');
        }, function() {
            $(this).stop().animate({ paddingBottom: 0 }, 'fast');
        });
        
        
   $(".active").mouseover(function(){
		$(this).animate({ paddingBottom:0 }, 'fast');
        }, function() {
            $(this).stop().animate({ paddingBottom: 0 }, 'fast');
        });
     
   $(".active").mouseout(function(){
		$(this).animate({ paddingBottom:0 }, 'fast');
        }, function() {
            $(this).stop().animate({ paddingBottom: 0 }, 'fast');
        });     

});






