//jQuery.noConflict();

//инициализация
//$(document).ready(init);

function init(){
  $("table.formtable tr:even td").attr("className", "greybackground");

  if ( $.browser.opera ){
    $('div.smallimages').css('marginLeft', '3px');  }}

//показываем меню
function showmenu(th, show){	var el = $(th).find('div.submenu');

	if (el){
	  if (show){	  	//nwidht = parseInt($(th).css('width'));
	  	nwidht = th.clientWidth;
     if (nwidht){     	 nwidht = nwidht-2;	     el.css('width', nwidht+'px');
	   }
	  el.css('display', 'block');
	  }
	  else
	  el.css('display', 'none');
	}}

//обрезаем контент текстового блока
function setcontent(th, cnt, set){  if (set)	  $(th).attr('value', $(th).attr('value').substring(0, cnt));
	$('#currentsymbolsnumber').html($(th).attr('value').length);
}

//заголовок меняем в документе
function settitle(st, add){	if (add)
	  document.title = document.title+" | "+st;
	else
	  document.title = st;}