// JavaScript Document
$(document).ready(function(){
	var cpage=window.location.href;
	cpage=cpage.substring(cpage.lastIndexOf('/')+1);
	if(cpage.lastIndexOf('?')>-1)
		cpage=cpage.substring(0,cpage.lastIndexOf('?'));
	cpage=cpage.toLowerCase();
	$('.left').each(function(){
		if($(this).attr('title').toLowerCase()==cpage)
			$(this).parent().find('td').addClass('leftNav');
	});
	$('.left').mouseover(function(){
		if($(this).attr('title').toLowerCase()!=cpage)
			$(this).parent().find('td').addClass('leftNav');
	});
	$('.left').mouseout(function(){
		if($(this).attr('title').toLowerCase()!=cpage)
			$(this).parent().find('td').removeClass('leftNav');
	});
	$('.left').click(function(){
		window.location.href=$(this).attr('title');
	});
});