jQuery()

in master.js [59:81]


jQuery(document).ready(function() {
	jQuery.each(init,
		function(i, item) {
			item();
		}
	);
	if (window.location.href.indexOf('product') > -1 || window.location.href.indexOf('product.html') > -1) {
		jQuery('.menu-item-28').addClass('current-menu-item');
		jQuery('.section-head').first().hide();
	}
	else if (window.location.href.indexOf('documentation') > -1 || window.location.href.indexOf('documentation.html') > -1) {
		jQuery('.menu-item-25').addClass('current-menu-item');
	}
	else if (window.location.href.indexOf('community') > -1 || window.location.href.indexOf('community.html') > -1) {
		jQuery('.menu-item-24').addClass('current-menu-item');
	}
	else if (window.location.href.indexOf('download') > -1 || window.location.href.indexOf('thank') > -1 || window.location.href.indexOf('download.html') > -1 || window.location.href.indexOf('thank.html') > -1 ) {

	}
	else {
		jQuery('.menu-item-27').addClass('current-menu-item');
	}
});