The store will not work correctly in the case when cookies are disabled.
Shop By Application
Shop By Application
Are you beginning a new project, but unsure of which tile to use? Browse our tile recommendations for each area of your home or commercial project.
');
$(".ves-megamenu").after('');
});
$(window).on('resize', function () {
calculateLeftOffset(blockIdSection);
}).resize();
// scroll check hide menu item
$(window).scroll(function () {
if ($('.is-sticky')[0]) {
$('.item-scroll-hide').hide();
} else {
$('.item-scroll-hide').show();
}
calculateLeftOffset(blockIdSection);
});
$(window).on('addedSticky removedSticky', function () {
calculateLeftOffset(blockIdSection);
});
});
';
$(window).scroll(function() {
if ($(window).scrollTop() > (window.innerHeight / 2)) {
toTopEle.html(toTopContent);
toTopEle.fadeIn();
} else {
toTopEle.html('');
toTopEle.fadeOut();
}
});
});