function tabs(mode)
{
	//Включаем разработка
	if(mode == 1)
	{
		$("#create_tab").css('background-position', 'center 5px');
		$("#promotion_tab").css('background-position', 'center 4px');
		$("#create_portfolio").show();
		$("#promotion_portfolio").hide();
		var l = location.href;
		l = l.split('#');
		location.href = l[0] + "#crt";
	}
	else if(mode == 2)
	{
		$("#create_tab").css('background-position', 'center 4px');
		$("#promotion_tab").css('background-position', 'center 5px');
		$("#create_portfolio").hide();
		$("#promotion_portfolio").show();
		var l = location.href;
		l = l.split('#');
		location.href = l[0] + "#prm";
		load_prm_works(0);
	}
}