elixirQuery(document).ready(function() { 
	
	elixirQuery('#banner').mouseenter(function(){
		elixirQuery('#banner').stop('true','true').animate({top: '-25px'}, 400, 'easeOutBack');			
	});
	
	elixirQuery('#banner').mouseleave(function(){
		elixirQuery('#banner').stop('true','true').animate({top: '0px'}, 300, 'easeOutBounce');			
	});

});
