$(document).ready(function() {

//menu
$('.top_menu ul li').last().addClass('end');
$('.top_menu ul li').first().addClass('first');
$('.bottom_block .item').last().addClass('end');

 $(".ankets .item, .bottom_block .item").hover(function () {
      $(this).toggleClass("hover");
    });

         var index = 0;
      $(".ankets .item").each(function (i) {
         index= i+1;
         if(index%5==0){
            $(this).addClass('end');
         }


});

   
});

function equalHeight(group) {
 tallest = 0;
 group.each(function() {
 thisHeight = $(this).height();
 if(thisHeight > tallest) {
 tallest = thisHeight;
 }
 });
 group.height(tallest);
}

$(window).load(function () {
 equalHeight($(".content.text .photo, .ankets .item"));
});


$(document).ready(function() {
var width = 0;
$('.bg_m ul').children().each(function() {
width += $(this).outerWidth( true );
});
$('.bg_m').children('ul').css('width', width);
});
