// JavaScript Document
function changeFontSize(inc){
	var pTags = Array();
	pTags = $("#textContent p, #textContent h1, #textContent h2, #textContent h3, #textContent h4, #textContent h5, #textContent, #textContent div, #textContent a, #learnMoreLink").each(function(){
		var fontSize = $(this).css("font-size");
		if(fontSize) {
			var curSize = parseInt(fontSize.replace("px", ""));
		} else {
			var curSize = 12;
		}
		$(this).css({'font-size' : curSize + inc + 'px'});
	});
}
function toggleMenu(){
	if ($("#mainNavSub").is(":hidden")) {  
		$("#mainNavSub").slideDown("slow");
		$("#redStackBar").slideDown("slow");
		return false;   
	} else {  
		$("#mainNavSub").slideUp("slow");   
		$("#redStackBar").slideUp("slow");
		return false;  
	}
}

