<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">function responsitivetables(){
	$('table.responsive').wrap('&lt;div class="div-responsitive-tables"&gt;');
}
function responsitivetop(){
	if( $('.v3-header-line2').length ){
		responsitivetop3();
	}else{
		if( $('#mobile').css('display')!='none') {
			var mmw = $('.navigation').width() - $('.v2-share').width() - $('.v2-cart').width() - $('.v2-exit').width();
			$('#mega-menu').width( mmw );
			$('.mflr').width( (mmw - $('#search').width() - 20)/$('.mflr').length );
			if($('.v2-container').width()&gt;1000){
				$('.v2-phone').css('margin-left',$('.v2-container').width()*0.045);
				$('.v2-hc').css('margin-right',$('.v2-container').width()*0.05);

			}
			$('.menu-item.item-5 .sub-container ul.dropdown-menu').width($('.menu-item.item-5').width());
			//$('.v2-home-news-item').height($('.v2-home-news-item').width());
			//$('.v2-home-news-item a').height($('.v2-home-news-item a').width());
		}
	}
}
function responsitivetop3(){
	if( $('#mobile').css('display')!='none') {
		var mmw = $('.navigation').width() - $('.v2-share').width() - $('.v3-logo').width() - $('.v3-header-contacts').width();
		//$('#mega-menu').width( mmw );
		//$('.mflr').width( (mmw - 20)/$('.mflr').length );
		if($('.v2-container').width()&gt;1000){

		}
		$('.menu-item.item-5 .sub-container ul.dropdown-menu').width($('.menu-item.item-5').width());
	}
}
$( document ).ready(function() {  
	responsitivetop();
	responsitivetables();
	if( $('#mobile').css('display')!='none') {
		if($('.rightbanner1').length){
			$('.v2-page-content').css('margin-right', '250px');
		}
	}
 });
 
window.onresize = function(event) {
    responsitivetop();
};</pre></body></html>