// JavaScript Document	
	
	var min=8;
	var max=18;
	function increaseFontSize() {
	var p = document.getElementsByTagName('td');
	for(i=0;i<p.length;i++) {
	  if(p[i].style.fontSize) {
		 var s = parseInt(p[i].style.fontSize.replace("px",""));
	  } else {
		 var s = 12;
	  }
	  if(s!=max) {
		 s += 1;
	  }
	  p[i].style.fontSize = s+"px"
	}
	}
	function decreaseFontSize() {
	var p = document.getElementsByTagName('td');
	for(i=0;i<p.length;i++) {
	  if(p[i].style.fontSize) {
		 var s = parseInt(p[i].style.fontSize.replace("px",""));
	  } else {
		 var s = 12;
	  }
	  if(s!=min) {
		 s -= 1;
	  }
	  p[i].style.fontSize = s+"px"
	}   
	}
$(document).ready(function() {	
	/*$('div#contentNavigation div:eq(0)').addClass('alpha');
	$('div#contentNavigation div:eq(1)').addClass('beta');
	$('div#contentNavigation div:eq(2)').addClass('gamma');*/
	$('.sidebarAlpha h3 a.currentHead').closest('h3').addClass('currentHeader');
	$('.sidebarAlpha h3:not(.currentHeader)').remove();
	$('ul.subNav').closest('li').addClass('currentLiSub'); 
	$('li.currentLiSub').prev().addClass('badlands');
	$('img.bottomCurve').css('bottom','0');	
	/*$('li.primeLink').each(function() {
	  $('li.primeLink a').not($('.subPrimeLink a')).addClass('levelOne');
	});*/
	$('ul.navLocations li a:contains(Maritimes)').closest('li').addClass('break');
	$('.break').before('<br>');
});


