$(document).ready(function() {  
	// Animation for tabs.
	$("ul.tabs li.inactive a").mouseover(
		function()
		{
			$(this).animate({"top": "0"},{queue:false, duration:350, easing:"easeOutBounce"});
		}
	).mouseout(
		function()
		{
			$(this).animate({"top": "11"},{queue:false, duration:350, easing:"easeOutBounce"});
		}
	);
});
