$(document).ready(function(){
	
	//Fix Errors - http://www.learningjquery.com/2009/01/quick-tip-prevent-animation-queue-buildup/
	
	//Remove outline from links
	$("#categorynav a").click(function(){
		$(this).blur();
	});
	
	//When mouse rolls over
	$("#categorynav li").mouseover(function(){
		$(this).stop().animate({height:'90px'},{queue:false, duration:600, easing: 'easeOutCubic'})
	});
	
	//When mouse is removed
	$("#categorynav li.active").mouseout(function(){
		$(this).stop().animate({height:'26px'},{queue:false, duration:600, easing: 'easeInCubic'})
	});
	
	
	
	//Remove outline from links
	$("#aboutnav a").click(function(){
		$(this).blur();
	});
	
	//When mouse rolls over
	$("#aboutnav").mouseover(function(){
		$(this).stop().animate({height:'80px'},{queue:false, duration:200, easing: 'easeOutQuad'})
	});
	
	//When mouse is removed
	$("#aboutnav.active").mouseout(function(){
		$(this).stop().animate({height:'24px'},{queue:false, duration:200, easing: 'easeInQuad'})
	});
});