$(document).ready(function(){
	$('.letters-items').hover(
		function(){
			$('#text-lesser h3').html($(this).find('div.value').html());
			$('#text-lesser p').html($(this).find('div.description').html());
		},
		function(){
			$('#text-lesser h3').html('');
			$('#text-lesser p').html('');
		}
	);
	$('.letters-items-services').hover(
		function(){
			$('#text-lesser h3').html($(this).find('div.value').html());
			$('#text-lesser p').html($(this).find('div.description').html());
		},
		function(){
			$('#text-lesser h3').html('');
			$('#text-lesser p').html('');
		}
	);
	$('.progects-item').hover(
		function(){
			$('#text-lesser h3').html($(this).find('img').attr('title'));
			$('#text-lesser p').html($(this).find('div.description').html());
		},
		function(){
			$('#text-lesser h3').html('');
			$('#text-lesser p').html('');
		}
	);
});

//letters-items-services
