$(document).ready(function(){

	$("#tabs").tabs({
		fx:{opacity:'toggle'}});
		//fx:{opacity:'toggle'}}).tabs("rotate",3000);


	$('ul.bottom li a').hover(
		function()
		{
			//var str = $(this).parent().attr("class");
			$(this).addClass("bold").animate({height:"30px"}),(500);
		},
		function()
		{
			$(this).removeClass("bold").animate({height:"15px"}),(500);
		}
	);

});