var obj = null;

function checkHover()
{
	if (obj)
	{
		obj.find('ul').fadeOut();
		obj.find('a').removeClass('hover');
 	} //if
} //checkHover

$(document).ready(function() {
	$('#mainMenu > li').hover(function() {
		if (obj)
		{
			obj.find('ul').fadeOut('fast');
			obj.find('a').removeClass('hover');
			obj = null;
		} //if

		$(this).find('ul').fadeIn('fast');
		$(this).find('a').addClass('hover');

	}, function() {
		obj = $(this);
		setTimeout("checkHover()",400);
	});
	
	
	if($("h3[id^=toggler]").length > 0)
	{
		$("h3[id^=toggler]").click(function(){
			var aTmp = this.id.split("_");
			var el = "#container_"+aTmp[1];
			$(el).slideToggle("slow");
		});
	}
	
	if($("table.colored").length)
	{
		$('table.colored tbody tr:odd').addClass('odd');
		$('table.colored tbody tr:even').addClass('even');
	} 
});
