$(document).ready(function(){
/* слайдер */
	$('#slides').slides({
		preload: true,
	});
/* подсветка колонок */
	$('.lf, .ct, .rg').hover(function(){
		$('DIV.'+$(this).attr('class')+' DIV.col-header').css('background-color','#6795c8');
		$('DIV.'+$(this).attr('class')+' DIV.col-cont').css('background-color','#f4f5f7');
		$('DL.word DT.'+$(this).attr('class')).css('background-position','0px 0px');
	},function(){
		$('DIV.'+$(this).attr('class')+' DIV.col-header').css('background-color','#79aae0');
		$('DIV.'+$(this).attr('class')+' DIV.col-cont').css('background-color','#ffffff');
		$('DL.word DT.'+$(this).attr('class')).css('background-position','-320px 0px');
	});
/* колонки одинаковой высоты */
	var colHeight = 0; 
	$('.col-cont').each(function(){
		var fullHeight = $(this).height() + parseFloat($(this).css('padding-top')) + parseFloat($(this).css('padding-bottom'));
		if(fullHeight>colHeight) {
			colHeight = fullHeight;
		}
	});
	$('.col-cont').each(function(){
		var setHeight = colHeight - parseFloat($(this).css('padding-top')) - parseFloat($(this).css('padding-bottom'));
		$(this).height(setHeight);
	});
});

