$(document).ready(function(){

	var acRootNum = rootTab;
	$('.catalogMenu').accordion({
		active: acRootNum,
		autoheight: false,
		animated: 'easeslide',
		header: '.rootM',
		alwaysOpen: false
	});
	
	var acChildTab1 = childTab1;
	$('.nestMenu1').accordion({
		active: acChildTab1,
		autoheight: false,
		animated: 'easeslide',
		header: '.childM',
		alwaysOpen: false
	});
	
	var acChildTab2 = childTab2;
	$('.nestMenu2').accordion({
		active: acChildTab2,
		autoheight: false,
		animated: 'easeslide',
		header: '.childM',
		alwaysOpen: false
	});
	
	var acChildTab3 = childTab3;
	$('.nestMenu3').accordion({
		active: acChildTab3,
		autoheight: false,
		animated: 'easeslide',
		header: '.childM',
		alwaysOpen: false
	});

	var acChildTab4 = childTab4;
	$('.nestMenu4').accordion({
		active: acChildTab4,
		autoheight: false,
		animated: 'easeslide',
		header: '.childM',
		alwaysOpen: false
	});

});