// declare array
menuData = new Array()
for (i=0; i < 9; i++) {
	menuData[i] = new Array(40)
	for (j=0; j < 20; j++) {
		menuData[i][j] = new Array(2)}}


// enter navigation data into array
// Home
menuData[1][0][0]="AWS Home";
menuData[1][0][1]="http://www.access-web-solutions.com/";
menuData[1][1][0]="eSolutions Home";
menuData[1][1][1]="http://esolutions.access-web-solutions.com";
menuData[1][2][0]="Domain Home";
menuData[1][2][1]="http://domain.access-web-solutions.com";
menuData[1][3][0]="Hosting Home";
menuData[1][3][1]="http://hosting.access-web-solutions.com";


//enter navigation data into array
// Services
menuData[2][0][0]="Domain Registration";
menuData[2][0][1]="http://domain.access-web-solutions.com";
menuData[2][1][0]="Website Hosting";
menuData[2][1][1]="http://hosting.access-web-solutions.com";
menuData[2][2][0]="eSolutions";
menuData[2][2][1]="http://esolutions.access-web-solutions.com";
menuData[2][3][0]="Creative Work";
menuData[2][3][1]="http://www.access-web-solutions.com/creative_work.shtml";
menuData[2][4][0]="Website Development";
menuData[2][4][1]="http://www.access-web-solutions.com/web_development.shtml";
menuData[2][5][0]="Website Promotion";
menuData[2][5][1]="http://www.access-web-solutions.com/web_promotion.shtml";
menuData[2][6][0]="Content Writing";
menuData[2][6][1]="http://www.access-web-solutions.com/content_writing.shtml";


// enter navigation data into array
// Portfolio
menuData[3][0][0]="Showcase";
menuData[3][0][1]="/showcase.shtml";
menuData[3][1][0]="Case Studies";
menuData[3][1][1]="/case_studies.shtml";


//enter navigation data into array
//About AWS
menuData[4][0][0]="Introduction";
menuData[4][0][1]="http://www.access-web-solutions.com/about_aws.shtml";
menuData[4][1][0]="Philosophy";
menuData[4][1][1]="http://www.access-web-solutions.com/philosophy.shtml";
menuData[4][2][0]="Work Methodology";
menuData[4][2][1]="http://www.access-web-solutions.com/methodology.shtml";


//enter navigation data into array
//Contact AWS
menuData[5][0][0]="Ask for Quote";
menuData[5][0][1]="http://www.access-web-solutions.com/ask_for_quote.shtml";
menuData[5][1][0]="General Enquiry";
menuData[5][1][1]="http://www.access-web-solutions.com/general_enquiry.shtml";
menuData[5][2][0]="Contact Details";
menuData[5][2][1]="http://www.access-web-solutions.com/contact_details.shtml";
menuData[5][3][0]="Order & Payment";
menuData[5][3][1]="http://www.access-web-solutions.com/order_payment.shtml";


//enter navigation data into array
//Support
menuData[6][0][0]="Client Support Center";
menuData[6][0][1]="http://www.access-web-solutions.com/support/";
menuData[6][1][0]="Service Feedback";
menuData[6][1][1]="http://www.access-web-solutions.com/support/client_feedback.shtml";
menuData[6][2][0]="Help";
menuData[6][2][1]="http://www.access-web-solutions.com/help.shtml";

//menuData[6][2][0]="Trouble Ticket";
//menuData[6][2][1]="/client_support.shtml";
//menuData[6][3][0]="Knowledge Base";
//menuData[6][3][1]="/kb/index.shtml";


/* Controls identification, position and number of items to be displayed in a menu 
(param,name,leftposition,topposition,number of item in a menu to be displayed,width) */

if(br=="N"){
/* (param,name,leftposition,topposition,number of item in a menu to be displayed,width) */
	doLayer('one',1,38,93,4,125)
    doLayer('two',2,107,93,7,145)
//    doLayer('three',3,199,93,0,125) /* portfolio menu disabled with "0" */
	doLayer('four',4,198,93,3,125)
	doLayer('five',5,303,93,4,125)
	doLayer('six',6,422,93,3,135)
}	
else if(br == "IE"){
/* (param,name,leftposition,topposition,number of item in a menu to be displayed,width) */
	doDiv('one',1,38,93,4,125)
    doDiv('two',2,107,93,7,145)
//    doDiv('three',3,199,93,0,125) /* portfolio menu disabled with "0" */
    doDiv('four',4,198,93,3,125)
    doDiv('five',5,303,93,4,125)
    doDiv('six',6,422,93,3,135)
}
else {}


// Break Out of Frames
if (parent.frames.length > 0) {
    parent.location.href = self.document.location
}