// JavaScript Document

function highlightActivePage ()
	{
	var menuLinks = jQuery("#menu a");
	for( x = 0, menuLength = menuLinks.length; x < menuLength; x++ )
		{
		if( window.location.href.indexOf( menuLinks[x].href ) != -1 )
			{
			menuLinks[x].className += " active_page";	
			}
		}
	}
	
jQuery(document).ready( highlightActivePage );
