//<?php //

	/**
	 * global javascript for the site
	 *
	 * setup()
	 *
	 * @return void
	 */
	function setup()
	{
		var e = document.getElementById( 'standard_page' );
		e.style.fontSize = '13px';
	}





	/**
	 * controlPanel()
	 *
	 * control panel increases functionality of the site by adding buttons that allow many useful items
	 * @return void
	 */
	function controlPanel( item )
	{
		switch ( item )
		{
			case 'top':
				break;
			case 'bottom':
				break;
			case 'increase':
			case 'decrease':
				var e = document.getElementById( 'standard_page' );
				size = parseInt( e.style.fontSize );
				e.style.fontSize = ( (item == 'increase') ? (size + 2) : (size - 2) ) + 'px';
				break;
		}
	}

	// ?>
