// tabs.js

$(document).ready(function(){
	$('.tab').each(function(){
		$(this).hover(function(){
			$(this).stop().animate({'top': '0px'},{queue: false, duration: 260});
		}, function() {
			$(this).stop().animate({'top': '127px'},{queue: false, duration: 260});
		});
	});
});