$(document).ready(function(){
	
	//Fix Errors - http://www.learningjquery.com/2009/01/quick-tip-prevent-animation-queue-buildup/
	
	//Remove outline from links
	$("a").click(function(){
		$(this).blur();
	});
	
	//When mouse rolls over
	$("li.expander").mouseover(function(){
		$(this).stop().animate({height:'32px'},{queue:false, duration:300})
	});
	
	//When mouse is removed
	$("li.expander").mouseout(function(){
		$(this).stop().animate({height:'16px'},{queue:false, duration:300})
	});
	
});
