$(document).ready( function () {
	$('#nav li li a').each( function () {
		var linktarget = this.href.replace(/(.+)\/.*$/,'$1');
		var loc = window.location.href.replace(/(.+)\/.*$/,'$1');
		if (linktarget == loc) {
			$(this).addClass('current');
			$(this).find('img').each( function () {
				this.src = this.src.replace(/\.gif$/i, '-over.gif');
			});
		}
	});
});

