/********************************************/
/*   using: Handcode Toolkit v1.0           */
/*   Copyright 2004 Incus Web Works         */
/********************************************/

//These functions define how menu buttons change on events

function _BOver(ID, Over)	 { _getSty(ID).backgroundImage='url(images/MenuOver.gif)'; _getSty(ID).color='#045e04'; }
function _BOut(ID, Out)      { _getSty(ID).backgroundImage='url(images/MenuOut.gif)'; _getSty(ID).color='#8c501e'; }
function _SMOver(ID, Over)   {    }
function _SMOut(ID, Out)	 {    }
function _SOver(ID) { _getSty(ID).color='#045e04'; _getSty(ID).backgroundImage='url(images/SubMenuOver.gif)';  }
function _SOut(ID)  { _getSty(ID).color='#8c501e'; _getSty(ID).backgroundImage='url(images/SubMenuOut.gif)';  }


//template
_build('background', 0, 0, 'winW', 'winH', 'all', 'background-color: #ffffff', '<img src="images/Dot.gif" width=1>'); 
_build('logo', 25, 12, '', '', 'all', '', '<img src="images/Logo1.gif">'); 
_build('bg_top', 250, 10, 'winW-250', 113, 'all', 'background-image: url(images/BG1.gif)', ''); 
_build('bg_border', 0, 170, 'winW', 4, 'all', 'border-top: 1px solid #045e04; border-bottom: 1px solid #045e04', '<img src="images/Dot.gif">'); 
_build('BG2a', 56, 189, '', '', 'all', '', '<img src="images/BG2a.gif">'); 
_build('image', 20, 238, '', '', 'all', 'border: 1px solid #481409;', '<img src="images/Welcome.jpg">'); 
_build('BG2b', 27, 444, '', '', 'all', '', '<img src="images/BG2b.gif">'); 

//content
_locate('title', 26, 149, '', ''); 
_locate('contentBox', 305, 200, 'winW-324', 'winH-252'); 

//build menu
_D('M1', 'all');_B('Welcome', 'index.html', '');_C();
_D('M2', 'all');_SM('Services', 'SubM2');_C();
 _D('SubM2', 'subMclass1');
  _S('<nobr>Custom Restoration, Alteration and Fabrication</nobr>', 'repair.html', '', 'SubM2');
  _S('<nobr>In-Plant Rug and Upholstery Cleaning</nobr>', 'in-plant.html', '', 'SubM2');
  _S('<nobr>On-Site Carpet and Upholstery Cleaning</nobr>', 'on-site.html', '', 'SubM2');
  _S('<nobr>Blind Cleaning</nobr>', 'curtain.html', '', 'SubM2');
  _S('<nobr>Specialized Oriental Care</nobr>', 'specialized.html', '', 'SubM2');  
 _C();
_D('M3', 'all');_B('Marketplace', 'marketplace.php', '');_C();
_D('M4', 'all');_B('About', 'about.html', '');_C();
//_D('M5', 'all');_B('History', 'history.html', '');_C();
_D('M6', 'all');_B('Advice', 'advice.html', '');_C();
_D('M7', 'all');_SM('Contact', 'SubM7');_C();
 _D('SubM7', 'subMclass2');
  _S('<nobr>Customer Satisfaction Survey</nobr>', 'survey.html', '', 'SubM7');
  _S('<nobr>Receive our E-Newsletter</nobr>', 'mailingList.html', '', 'SubM7');
  _S('<nobr>Contact Information</nobr>', 'contact.html', '', 'SubM7');
 _C();
 

//locate menu
_locate('M1', 244, 120, '', '');
_locate('M2', 323, 120, '', '');
 _locate('SubM2', 333, 25, '', '');
_locate('M3', 399, 120, '', '');
_locate('M4', 496, 120, '', '');
//_locate('M5', 578, 120, '', '');
_locate('M6', 555, 120, '', '');
_locate('M7', 620, 120, '', '');
 _locate('SubM7', 630, 61, '', '');

