/*
	Site-wide Javascript file
*/

// Executes after document is loaded
$(document).ready(function() {

	$("table#navTable td").hover(
		function(){
			$(this).addClass( 'tdHover' );
		},
		function(){
			$(this).removeClass( 'tdHover' );
		}
	);
	
	$("table#navTable p").each( function() {
		var location = window.location.pathname.toLowerCase();
		var link = $(this).html().toLowerCase();
		link = link.replace(/\.php/,"");
		link = link.replace( /^\//, "");
		link = link.replace( / /,"");
		
		if ( ( link == "home" && (location == '/' || location == '/index.php' ) ) || location.indexOf( link ) != -1 ) {
			$(this).addClass( 'selectedPage' );
			return;
		}
	});

 });



