/*
Instructions:
Comments (code that is omitted in between the php tags ? > )
Can be written with // for a specific line or a group of lines
can be commented by surrounding with /* like this comment is
Colors: when entering a color, Enter the hexidecimal format.
Example: #FFFFFF = white
It is recommended when changing colors to comment out the previous
color and write the new color.
Example:
//$backgroundColor = '#CC9966'; (omitted)
$backgroundColor='#99CC66'; (color used)
Also the last color assigned to the variable will be the color used
*/
//ENTER BACKGROUND COLOR
//$backgroundColor='#CCFF33'; //bright green
//$backgroundColor='#FFCC66';//brown orange
$backgroundColor='#CC9933'; //carmel brown
$backgroundColor= '#003366';
$backgroundColor='#556690';
$backgroundColor='#145FAF';
//ENTER LEFT SIDE BAR BACKGROUND COLOR
//$sideBackgroundColor = '#FFCC66'; //orange brown
$sideBackgroundColor = '#FFFF99';//light yellow
$sideBackgroundColor = '#FFCC00'; //brownish orange
$sideBackgroundColor= '#EABF68';
$sideBackgroundColor = '#FFCC66';
//ENTER RIGHT CONTENT BACKGROUND COLOR
//$contentBackgroundColor = '#FFFF99'; //light yellow
$contentBackgroundColor = '#FFFFFF'; //white
//ENTER HEADER BACKGROUND IMAGE
$headerBackgroundImage = '/images/orangeTexture.jpg';
//$headerBackgroundImage = '/images/yellowTexture.jpg';
//$headerBackgroundImage = '/images/greenHeader.jpg';
//$headerBackgroundImage = '/images/bluetemp.jpg';
//$headerBackgroundImage = '#FF8633';
//ENTER HYPERLINK HOVER COLOR
$linkHoverColor = '#FF6600';
//ENTER HEADER HYPERLINK BACKGROUND COLOR
$linkHeaderBackgroundColor='#FEF8B0';
?>