<!-- Begin SIDEBAR

// CHANGE ANY OF THESE VARIABLES TO "no" OR "yes" TO TURN AN OPTION OFF OR ON

// ONLY USE lowercase FOR ALL OPTIONS

var paragraph_1 	= "no"		// SHOW THE 1ST PARAGRAPH
var paragraph_2 	= "no"		// SHOW THE 2ND PARAGRAPH

var showRimage		= "1"		// SHOW A RANDOM SIDEBAR IMAGE
var linkedR		= "no"		// RANDOM IMAGE PAGE LINK
var showimage_1		= "yes"		// SHOW A SMALL SIDEBAR IMAGE
var showimage_2		= "yes"		// SHOW A SMALL SIDEBAR IMAGE
var showimage_3		= "yes"		// SHOW A SMALL SIDEBAR IMAGE

var linked		= "no"	// SIDEBAR IMAGE LINK

var spacing		= "yes"		// NUDGE SIDEBAR DOWN
var showdate		= "no"		// SHOW THE DATE ON THE PAGE
var dateLR		= "right"	// DATE LEFT OR RIGHT
var dateX		= "10"		// DATE X LOCATION
var dateY		= "55"		// DATE Y LOCATION



// SIDEBAR LOCTION CODE - YOU CAN EDIT TOP OR L/R LOCATION
document.write('<div style="position: relative; left: 0px; top: -15px;">');


// SMALL PICTURE AREA
   if (showimage_1 == "yes") {
document.write('<center>');
document.write('<a href="services.htm"><img src="picts/resume.jpg" border="0" width="150" class="bordersSB"></a><br><br>');
document.write('</center>');
}

document.write('<span class="sidebartitle">');
document.write('<center>');
document.write('Professional');
document.write('</center>');

document.write('<span class="sidebartitle">');
document.write('<center>');
document.write('Resumes');
document.write('</center>');

document.write('<br></span><span class="sidebartext">');



document.write('</div>');

// SMALL PICTURE AREA
   if (showimage_2 == "yes") {
document.write('<center>');
document.write('<a href="services.htm"><img src="picts/letter.jpg" border="0" width="150" class="bordersSB"></a><br><br>');
document.write('</center>');
}

document.write('<span class="sidebartitle">');
document.write('<center>');
document.write('Compelling');
document.write('</center>');

document.write('<span class="sidebartitle">');
document.write('<center>');
document.write('Cover Letters');
document.write('</center>');

document.write('<br><br></span><span class="sidebartext">');


document.write('</div>');



// SMALL PICTURE AREA
   if (showimage_3 == "yes") {
document.write('<center>');
document.write('<a href="services.htm"><img src="picts/interview.jpg" border="0" width="150" class="bordersSB"></a><br><br>');
document.write('</center>');
}

document.write('<span class="sidebartitle">');
document.write('<center>');
document.write('Interview');
document.write('</center>');

document.write('<span class="sidebartitle">');
document.write('<center>');
document.write('Training');
document.write('</center>');

document.write('<br></span><span class="sidebartext">');


document.write('</div><br>');



// SMALL PICTURE AREA
   if (showimage_3 == "yes") {
document.write('<center>');
document.write('<a href="services.htm"><img src="picts/coaching.jpg" border="0" width="150" class="bordersSB"></a><br><br>');
document.write('</center>');
}

document.write('<span class="sidebartitle">');
document.write('<center>');
document.write('Job Search');
document.write('</center>');

document.write('<span class="sidebartitle">');
document.write('<center>');
document.write('Coaching');
document.write('</center>');

document.write('<br></span><span class="sidebartext">');



document.write('</div>');
// START DATE SCRIPT
   if (showdate == "yes") {

document.write('<div id="date-location" style="'+dateLR+': '+dateX+'px; POSITION: absolute; TOP: '+dateY+'px">');
var d=new Date()
var weekday=new Array("Sunday","Monday","Tuesday","Wednesday","Thursday","Friday","Saturday")
var monthname=new Array("January","February","March","April","May","June","July","August","September","October","November","December")
document.write("<span class=\"date-font\"><nobr>" + weekday[d.getDay()] + " ")
document.write(monthname[d.getMonth()] + " ")
document.write(d.getDate() + ". ")
document.write(d.getFullYear())
document.write("</nobr><br></span>")
document.write('</div>');

}


// -- END -->

