(function ($){
$(document).ready(function(){
/*
$(".number-1").click(function(){
$('html, body').animate({
scrollTop: $(".clients-choose").offset().top
}, 500);
});
$(".number-2").click(function(){
location.href='/portfolio/kirpich/o-kompanii/';
});
$(".number-3").click(function(){
location.href='/portfolio/kirpich/otzyvy/';
});
*/
$('.item-name').matchHeight();
$('.item-text').matchHeight();
if(window.location.hash){
var target=window.location.hash;
if($(target).length){
var iniscl=$(target).offset().top;
var scl=$(target).offset().top - 400;
console.log('scrolling ' + iniscl + ' ' + scl);
$('html, body').animate({
scrollTop: scl
}, 1600);
}}
});
}(jQuery));