//---------------------------------------------------------------------------------
$(document).ready(function(){//----------------------------------------------------
//---------------------------------------------------------------------------------

$(window).scroll(function ()
{
	if (parseInt(getElementPosition($("#menu").parent('div.td-menu').get(0)).top) < parseInt(getBodyScrollTop()))
		$("#menu").css('top', parseInt(getBodyScrollTop()) - parseInt(getElementPosition($("#menu").parent('div.td-menu').get(0)).top) + 10);
	else
		$("#menu").css('top', 0);
});


// клик на баннере
$('img.banner').click(function()
{
	var banner_id = $(this).attr('banner_id');
	
	$.post('/ru/banners/index.php', { banner_id: banner_id });
	
	//$(this).prev('a').click();
});

//
$('#company_title').each(function()
{
	field = $(this).attr('field') ? $(this).attr('field') : $(this).attr('name').replace('form[', '').replace(']', '');
	table = $(this).attr('table');
	if (table == '') return;
	
	$(this).autocomplete('/ko.cms/actions.php',
	{
		minChars: 2,
		max: 9,
		extraParams: { a: 'autocomplete', table: table, field: field }
	});
});
$('textarea.tiny').tinymce(
{
	theme: 'advanced',
	language: 'ru',
	width: 400,
	height: 400,
	element_format : "html",

	plugins: "safari, inlinepopups, contextmenu, paste",
	
	theme_advanced_buttons1 : "bold, italic, underline, strikethrough, |, justifyleft, justifycenter, justifyright, justifyfull, |, hr, charmap, |, forecolor, backcolor, |, bullist, numlist, |, sub, sup, |, outdent, indent",
	theme_advanced_buttons2 : "",
	theme_advanced_buttons3 : "",
				
	theme_advanced_toolbar_location: "top",
	theme_advanced_toolbar_align: "left",
	
	theme_advanced_font_sizes: "Обычный=100%, Большой=120%, Очень большой=140%"
});
//---------------------------------------------------------------------------------
});//------------------------------------------------------------------------------
//---------------------------------------------------------------------------------
