$(function(){
	$('img.header_images').hover(function(){
		var left = parseInt($(this).css('left'))-10;
		var top = parseInt($(this).css('top'))-10;
	    $(this).animate({'height': $(this).height()+20, 'width': $(this).width()+20, 'left': left + 'px', 'top': top + ('px')}, 200);
		},
	    function(){
		var left = parseInt($(this).css('left'))+10;
		var top = parseInt($(this).css('top'))+10;
		$(this).animate({'height': $(this).height()-20, 'width': $(this).width()-20, 'left': left + 'px', 'top': top + ('px')}, 200);
	    }	
	);
	$('div.menu li a').hover(function(){
	    $(this).animate({'left':'5px'}, 100);
		},
		function(){
		$(this).animate({'left':'0px'}, 100);
	});	
	if($('.right-block').height() < $('.text').height()){
		$('.right-block').css('height', $('.text').height());
	}
	else{
		$('.text').css('height', $('.right-block').height()+20);
	}	
});
