// Image replace script, runs inline with page so there is no delay when loading.
		$('.rsgImageReplace').each(function() {
					$(this).html('<img src = "images/'+$(this).attr('alt')+'.jpg" border = "0" />');
				});
		$('.rsgImageReplaceGIF').each(function() {
					$(this).html('<img src = "images/'+$(this).attr('alt')+'.gif" border = "0" />');
				});

