<!-- Begin HEADER OPTIONS CODE

// NOTE: If you use a ' add a slash before it like this \'

// ONLY USE lowercase FOR ALL OPTIONS


// CHANGE ANY OF THESE VARIABLES TO "no" OR "yes" TO TURN AN OPTION OFF OR ON

var color		= "FF6600"		// HEADER BACKGROUND COLOR

var showdate	= "yes"			// SHOW THE DATE ON THE PAGE
var dateLR		= "right"		// DATE LEFT OR RIGHT
var dateX		= "11"			// DATE X LOCATION
var dateY		= "90"			// DATE Y LOCATION

var wintersection	= "no"			// SHOW WINTER/SUMMER ON THE PAGE
var sectionLR	= "left"		// WINTER/SUMMER LEFT OR RIGHT
var sectionX	= "11"			// WINTER/SUMMER X LOCATION
var sectionY	= "90"			// WINTER/SUMMER Y LOCATION

// START DATE SCRIPT
   if (showdate == "yes") {

document.write('<div id="date-location" style="'+dateLR+': '+dateX+'px; POSITION: absolute; TOP: '+dateY+'px" class="printhide">');
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(d.getDate() + ", ")
document.write(monthname[d.getMonth()] + " ")
document.write(d.getFullYear())
document.write("</nobr><br></span>")
document.write('</div>');

}

// START SECTION SCRIPT
/*if (wintersection == "yes") {

document.write('<div id="section" style="'+sectionLR+': '+sectionX+'px; position: absolute; top: '+sectionY+'px" class="printhide">');
document.write("<span class=\"section-font\">You are in the: Winter Collection - <a href=\"summer_index.php\" title=\"Summer\">Summer Collection</a>")
document.write("<br/></span>")
document.write('</div>');
}
else {
document.write('<div id="section" style="'+sectionLR+': '+sectionX+'px; position: absolute; top: '+sectionY+'px" class="printhide">');
document.write("<span class=\"section-font\">You are in the: Summer Collection - <a href=\"winter_index.php\" title=\"Winter\">Winter Collection</a>")
document.write("<br/></span>")
document.write('</div>');
}*/
//  End -->