var $j = jQuery.noConflict();
$j(document).ready(function(){
	
	//Fix Errors - http://www.learningjquery.com/2009/01/quick-tip-prevent-animation-queue-buildup/
		m=document.getElementById('buttons');
		sa=m.getElementsByTagName('a');
			
	//Remove outline from links
	$j("a").click(function(){
		$j(this).blur();
	});
	
	//When mouse rolls over
	$j(sa).mouseover(function(){
		$j(this).stop().animate({height:'45px'},{queue:false, duration:1200, easing: 'easeOutBounce'})
	});
	
	//When mouse is removed
	$j(sa).mouseout(function(){
		$j(this).stop().animate({height:'18px'},{queue:false, duration:900, easing: 'easeOutBounce'})
	});
	
});
