jQuery(document).ready(function() {
 jQuery('#menu-sidebar ul li:nth-child(even)').css('backgroundColor','#F9F0DF');
 jQuery('#menu-sidebar ul li:nth-child(even)').css('borderTop','2px #fff solid');
});

jQuery(document).ready(function() {
 jQuery('#menu-sidebar ul li:nth-child(odd)').css('backgroundColor','#F9EDD5');
 jQuery('#menu-sidebar ul li:nth-child(odd)').css('borderTop','2px #fff solid');
});

jQuery(document).ready(function() {
 jQuery('#menu-sidebar li:nth-child(odd) ul li:nth-child(odd)').css('backgroundColor','#F9F0DF');
});

jQuery(document).ready(function() {
 jQuery('#menu-sidebar li:nth-child(odd) ul li:nth-child(even)').css('backgroundColor','#F9EDD5');
});

