$(document).ready(function()
{
	$("#tabs").tabs({ event: 'mouseover' , selected: 0 }).addClass('ui-tabs-vertical ui-helper-clearfix');
	$("#tabs_dost").tabs({ event: 'mouseover' , selected: 0 }).addClass('ui-tabs-right ui-helper-clearfix');
	$("#tabs li").removeClass('ui-corner-top').addClass('ui-corner-left');

	$(".main_info_block").corner("10px");
	$("a").click(function()
 	{
		if ($(this).attr("name") == "history_dates_show")
		{
			if($("#history_dates_full").css("display") == "none")
			{
				$("#history_dates_go a").text("Скрыть");
			}
			else $("#history_dates_go a").text("Подробнее");
	        $("#history_dates_full").toggle("slow");

			return false;
		}
	});
});
