﻿function navigationSelection()
{
	$('#navigation').find('.active').removeClass('active');
	var path = location.pathname;
	var pathArray = path.split("/");
	var fileName = pathArray[pathArray.length-1];
	if (fileName)
	{
		$('#navigation a[@href$="' + fileName + '"]').addClass('active');
	}
}

$(document).ready(function()
{
	$('.forum-posts tr:odd').addClass('odd');
	
	$('a.nav-memberpages').click(function(){$('#submenu').show();});
	if($('a.nav-memberpages.active').next().text())
	{
		$('#submenu').show();
	}
	
	if($.browser.safari )
	{
		$('body').css({textShadow:'#fff 0 0 1px'});
		$('.forum-posts thead th').css({fontWeight:'normal'});
	}
	
	navigationSelection();
	
});
