$(document).ready(function(){
	
	$('.inactive')
			.css('top', '28px');
	
	$('.inactive').hover(function(){
		$(this)
			.stop(true)
			.animate({'top': '0px'},'fast');
	},function(){
		$(this)
			.stop(true)
			.animate({'top': '28px'},'fast');
	});
	
});