$(document).ready(function() {
	// Navigation rollovers
	firstSlash = document.location.href.indexOf("/", "http://".length);
	portion = document.location.href.substring(firstSlash, document.location.href.indexOf("/", firstSlash+1));
	$("#navigation a[href!='"+portion+"']:not(:first-child) img, ").hover(function(){$(this).fadeTo("fast", 0.3);}, function(){$(this).fadeTo("fast", 1)});
	
	$("a[href='"+portion+"']").css('opacity', 0.3);
});