$(function(){
	
	$("#right div div:first-child").addClass("first-child");
	$('#navtainer li, #left li').click(function(e){if($(this).children("a").length > 0){e.stopPropagation();window.location=$(this).children("a").attr("href");}}).css('cursor','pointer');
	$("a[rel=external]").each(function(){this.target="_blank"});
	$(".IE6 li").hover(function(){$(this).addClass("hover")},function(){$(this).removeClass("hover")});
	$("#navtainer div").each(function(){if($(this).children().length == 1) $(this).css('width','200px');});
	$('#navtainer a, #left a').each(function(){
		if(this.href==window.location) $(this).parent().addClass('indicator');
		if( window.location.pathname.match($(this).attr("href").split("s.",1)) )
			$(this).parents('li').addClass('indicator');
	});

});

