$(document).ready (function () {
	colorTables();
	setupHelpModule();
	toggleDropdownInfos();
	
	jQuery(function(){
		jQuery('ul.sf-menu').superfish();
	});
});

function colorTables () {
	$("#colorjs tr:first").addClass("header");
	$("#colorjs tr:even").addClass("even");
	$("#colorjs tr:odd").addClass("odd");
}

function setupHelpModule () {
	$("#helpModule dd").hide();
	$("#helpModule li").click(function () {
		$(this).next().slideToggle("fast");
	});
}

function toggleDropdownInfos() {
	$("dd.ddiInfo").hide();
	$("dd.ddiMain").click(function () {
		$(this).next().slideToggle("fast");
	});
}