<!-- Begin HEADER OPTIONS CODE

// NOTE: If you use a ' add a slash before it like this \'

// ONLY USE lowercase FOR ALL OPTIONS



var color		= "1C509B"		// HEADER BACKGROUND COLOR
var flashheight		= "100"			// HEIGHT OF THE FLASH (IN PIXELS) (and adjust the menu.js)
var flashwidth		= "600"			// WIDTH OF THE FLASH (IN PIXELS) (and adjust the menu.js)

var showimage 		= "yes"	 		// SHOW THE SMALL IMAGE ON THE HEADER RIGHT SIDE
var imaglink		= "/contact.html"		// SMALL IMAGE PAGE LINK
var imagespace		= "150"			// IMAGE PLACEMENT

var floatdate		= "yes"		// FLOAT THE DATE TO LOCATE IT
var showdate		= "yes"		// SHOW THE DATE ON THE PAGE
var dateLR		= "right"	// DATE LEFT OR RIGHT
var dateX		= "15"		// DATE X LOCATION
var dateY		= "80"		// DATE Y LOCATION







// COPYRIGHT 2009 ©  Design Corporation
// Unauthorized use or sale of this script is strictly prohibited by law

// YOU DO NOT NEED TO EDIT BELOW THIS LINE



document.write('<table cellpadding="0" cellspacing="0" border="0" width="100%" bgcolor="#'+color+'" class="headerborder"><tr><td ALIGN="left" VALIGN="top">');
document.write('<object classid="clsid:D27CDB6E-AE6D-11cf-96B8-444553540000" width="650" height="100" id="FlashID" title="Boudoir flash">');
document.write('  <param name="movie" value="/home.swf">');
document.write('  <param name="quality" value="high">');
document.write('  <param name="wmode" value="opaque">');
document.write('  <param name="swfversion" value="6.0.65.0">');
document.write('  <!-- This param tag prompts users with Flash Player 6.0 r65 and higher to download the latest version of Flash Player. Delete it if you don’t want users to see the prompt. -->');
document.write('  <param name="expressinstall" value="/scripts/expressInstall.swf">');
document.write('  <!-- Next object tag is for non-IE browsers. So hide it from IE using IECC. -->');
document.write('  <!--[if !IE]>-->');
document.write('  <object type="application/x-shockwave-flash" data="/home.swf" width="650" height="100">');
document.write('    <!--<![endif]-->');
document.write('    <param name="quality" value="high">');
document.write('    <param name="wmode" value="opaque">');
document.write('    <param name="swfversion" value="6.0.65.0">');
document.write('    <param name="expressinstall" value="/scripts/expressInstall.swf">');
document.write('    <!-- The browser displays the following alternative content for users with Flash Player 6.0 and older. -->');
document.write('    <div>');
document.write('      <h4>Content on this page requires a newer version of Adobe Flash Player.</h4>');
document.write('      <p><a href="http://www.adobe.com/go/getflashplayer"><img src="http://www.adobe.com/images/shared/download_buttons/get_flash_player.gif" alt="Get Adobe Flash player" width="112" height="33" /></a></p>');
document.write('    </div>');
document.write('    <!--[if !IE]>-->');
document.write('  </object>');
document.write('  <!--<![endif]-->');
document.write('</object>');
document.write('<script type="text/javascript">');
document.write('<!--');
document.write(' swfobject.registerObject("FlashID")');
document.write('//-->');
document.write('</script>');
document.write('</td><td align="center" valign="middle" width="'+imagespace+'">');
   if (showimage == "yes") {
document.write('<a href="'+imaglink+'"><img src="/picts/home-background.jpg" border="0" width="125" height="60" vspace="2" class="borders"></a><br>');
}
else {
document.write('<img src="/picts/spacer.gif" width="125" height="1"><br>');
}

// START DATE SCRIPT
   if (showdate == "yes") {

   if (floatdate == "yes") {
document.write('<div id="date-location" style="'+dateLR+': '+dateX+'px; POSITION: absolute; TOP: '+dateY+'px">');
}
var d=new Date()
var weekday=new Array("Sun","Mon","Tue","Wed","Thu","Fri","Sat")
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></span><br>")
   if (floatdate == "yes") {
document.write('</div>');
}
}
document.write('</td></tr></table>');






//  End -->