// JavaScript Document

jQuery(function(){

    document.forms[0].action = window.location.href;
	SiteNav = jQuery("#nav ul");
	jQuery("li a", SiteNav).each(function(){
		$el = jQuery(this);
		text = $el.addClass("replaced").text();
		isactive = $el.parent().hasClass("active");
		$el.html('<img src="/resources/image.php?text=' + text + ((isactive) ? '&colour=6F6F6F' : '') + '" alt="' + text + '" title="' + text + '" />');
	});
	
});