');
} else if($( '#menu nav > li' ).hasClass( "current" )) {
var menuName = $( "#menu nav > li.current > a" ).text();
$( "#subBanner .container" ).prepend('
' + menuName + '
');
}
});
//MOVE ALL SIMILAR BUTTONS TO SAME SECTION
var numItems = $('.basicFrame').length;
$(".basicFrame").each(function(i){
if (numItems < 6) {
$(this).removeClass('col-4');
$(this).addClass('col-' + numItems);
}
if (i === 0) {
$(this).parents('.contentImgRow').addClass('firstButtonSection');
}
if (i > 3) {
$(this).parents('.photoSection').addClass('remove');
$(this).appendTo('.firstButtonSection');
}
});
$('.photoSection.remove').remove();