jQuery(window).load(function() {
	if (jQuery('#ProductSystemsHolder').length) {
		jQuery('#ProductSystemsHolder').kwicks({ isVertical: true, min: 45 });
	}
	
	if (jQuery('#ProductSystemsHolder li').length) {
		jQuery('#ProductSystemsHolder li').bind('mouseenter', function() {
			jQuery(this).children('div.body').children('.sectionList').fadeIn(200);
		}).bind('mouseleave', function() {
			jQuery(this).children('div.body').children('.sectionList').fadeOut(200);
		});
	}
});
