$(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
	$("d").mouseover(function(){
		$(this).stop().animate({height:'250px'},{queue:false, duration:200, })
	});
	
	//When mouse is removed
	$("d").mouseout(function(){
		$(this).stop().animate({height:'30px'},{queue:false, duration:500,})
		
		
	});
	
});
