$(document).ready(function() {
	$("a[href$=pdf]").each(
	   function(){
	      $(this).attr('target', '_blank');
	});
	$('.table-3cols tr:first').css("background-color","#C5D5E4");
	$('.table-3cols tr:odd').addClass("odd");
	$('#content ul li:odd').addClass("odd");
	
	$('a[href*="mailto"]').each(function(){
		oldh = $(this).text();
		$(this).attr("title",oldh);
		newh = oldh.substr(0,16);
		$(this).text(newh+"...");
	});
	$('a[href*="mailto"]').tipTip({
		defaultPosition: 'top'
	});
});
