// JavaScript Document
 $(document).ready(function(){
   $("a[rel~=external]").attr('target', '_blank');
//alert($("#navCapabilities").attr("title"));
   $("a").each(function(index){
		if ($(this).attr('title') == ""){
			$(this).attr('title', $(this).text());
		}
		else{
			//if i wanted it to do something with the already set title i could put it here.
		}	
	});


 });



window.onload = date;

function date() {
		now = new Date;
		theYear=now.getYear();
		if (theYear < 1900){
			theYear=theYear+1900
			}
		$(".date").html("&copy;" + theYear);
}