function highlight(itemclass)
{
	$("." + itemclass).mouseover(function(){
		$(this).addClass('highlight');
	});
	
	$("." + itemclass).mouseout(function(){
		$(this).removeClass('highlight');
	});
	
	$("." + itemclass).dblclick(function(){
		id = $(this).attr('id');
		$("#full"+id).toggle();
		$(this).toggleClass('active');
	});
}

function alter(tableid)
{
	$("#" + tableid + " tr:even").addClass("even");
}

function createDatepicker()
{
	$(".datepicker").datepicker({
    	monthNames: ['Январь', 'Февраль', 'Март', 'Апрель', 'Май', 'Июнь', 'Июль', 'Август', 'Сентябрь', 'Октябрь', 'Ноябрь', 'Декабрь'],
    	monthNamesShort: ['Январь', 'Февраль', 'Март', 'Апрель', 'Май', 'Июнь', 'Июль', 'Август', 'Сентябрь', 'Октябрь', 'Ноябрь', 'Декабрь'],
    	yearRange: '1900:2020',
    	dateFormat: 'yy-mm-dd',
    	changeYear: true,
    	changeMonth: true});
}