<?php

/*////
RotarySwitch config - do not change the order of the following configurations
*/////

//control size - the controls are all assumed to be square, where l = w
$control_size=60; //px

//animation speed - duration of css3 animation, seconds
//This is a javascript specific configuration option. to change animation speed, please edit 'rotarySwitch_3pos.js.' the configuration option is @file beginning

//DB Config
//Please see the db_config.inc file in the 'config' directory

//add css styling to the switch
require("style/rotarySwitchStyle.php");
//make file functions available.  Note--it may already be included from other uses
if(!function_exists('FindInParentDir')){
	require('includes/fileFuncs.inc');
}
//make the creator function available
require("rotary.php");

?>