$(document).ready(function(){

	$("#tabs").tabs({
		fx:{opacity:'toggle'}});


	$('ul.bottom li a').hover(
		function()
		{
			$(this).addClass("bold").animate({height:"30px"}),(500);
		},
		function()
		{
			$(this).removeClass("bold").animate({height:"15px"}),(500);
		}
	);
});
