$(document).ready(function()
	{
		var dl = $("dl.catalogProgrammsList");
		if(dl.length > 0)
		{
			var hash = document.location.hash;
			dl.each(function()
				{
					$(this).find("dt").each(function()
						{
							$(this).hover(
								function(){ $(this).addClass("hover"); },
								function(){ $(this).removeClass("hover"); }
							);
							
							$(this).toggle(
								function(){ $(this).addClass("selected").next().hide()},
								function(){ $(this).removeClass("selected").next().show()}
							)
							
							$(this).click();
							
							if(hash == "#"+this.id) $(this).click();
						}
					);
				}
			)
		}
	}
);
