$(document).ready(function(){
													 
	//Check for empty links
	//$('a').each(function (){
	//  var linkPath = $(this).attr('href');
	//	if (linkPath == "#") $(this).css('background-color','yellow')
  //});	
													 
	//Add dashes to subitems in left nav
  $('#leftnav li').not('li li').prepend('- ');
	$('#leftnav li li').prepend('&bull; ');
	
	//Use image alt tag as caption
	$('#article .callout img').each(function(){
		var caption = $(this).attr('alt');
		$('div.callout').css('border-bottom','1px solid #c2c2c2');
		$('div.callout').append('<p>' + caption + '</p>');
	});
	
	//Pass page title into RMI email link as Subject
  var subj = $('h1').html();
	var title = $(this).attr('title');
	var _href = $('#fmi a').attr('href');
	$('#fmi a').attr('href', _href + '?subject=' + title + '');

});
