// jquery accordion
	$(function() {
		$("#accordion").accordion({
			autoHeight: false,
			collapsible: true,
			navigation: true
		});
	});

// jquery accordion - education home page
$(function() {
	$("#accordion-ed").accordion({
		autoHeight: true,
		collapsible: false,
		navigation: true
	});
});

// jquery tabs
	$(function() {
		$("#tabs").tabs({
			event: 'mouseover'
		});
	});

//	$(function() {
//		$( "#tabs-click" ).tabs();
//	});

	$(function() {
		$( "#tabs-click" ).tabs({
			cookie: {
				// store cookie for a day, without, it would be a session cookie
				expires: 1
			}
		});
	});

// font size changer
	function changeFontSize(inc)
{
  var p = document.getElementsByTagName('p');
  for(n=0; n<p.length; n++) {
    if(p[n].style.fontSize) {
       var size = parseInt(p[n].style.fontSize.replace("px", ""));
    } else {
       var size = 12;
    }
    p[n].style.fontSize = size+inc + 'px';
   }
}
