35////////////////////////////////////////////////////////////////////////////
// dropdowntext.js 
// 
// Written By powerweb Web Development
//
// Date: 29 Nov 2001
//
//

var activeMenu=""
var left_corner_y = 122; // y-coordinate of top left corner of dropdown menu 
var back_color = '#FF6E6B'; // the background color of dropdown menu 
var backColor = '#ffffff'; // the color of dropdown menu border
var border_size  = '1'; // the width of dropdown menu border

//// Don't change these parameters
var delay  = 500; /////
var active_layer_id = -1;  /////
var on_layer_id  = -1;  /////
var buff_id  = -1;  /////
/// ----------------------------

// menu content; the dropdown menus themselfs between '' and items of every dropdown menu are diveded by |; 
// 

menu_content     = new Array ();

		
		//Code to display the services menu
menu_content[menu_content.length]='<a class=dropdowntext href="http://www.theprofitteam.com/services.htm">Profit improvement</a> | <a class=dropdowntext href="http://www.theprofitteam.com/added.htm">Added value services</a> | <a class=dropdowntext href="http://www.theprofitteam.com/strategic.htm">Strategic planning</a> | <a class=dropdowntext href="http://www.theprofitteam.com/goals.htm">Goal setting</a> || <a class=dropdowntext href="http://www.theprofitteam.com/coaching.htm">Coaching</a> | <a class=dropdowntext href="http://www.theprofitteam.com/seminars.htm">Seminars & speaking</a> | <a class=dropdowntext href="http://www.theprofitteam.com/training.htm">Training team</a> | <a class=dropdowntext href="http://www.theprofitteam.com/marketing.htm">Marketing team</a> | <a class=dropdowntext href="http://www.theprofitteam.com/costreduction.htm">Cost reduction team</a> | <a class=dropdowntext href="http://www.theprofitteam.com/dental.htm">Dental team</a> | <a class=dropdowntext href="http://www.theprofitteam.com/care.htm">Care home team</a> | <a class=dropdowntext href="http://www.theprofitteam.com/grooming.htm">Grooming a business for sale</a> | <a class=dropdowntext href="http://www.theprofitteam.com/corporate.htm">Corporate finance</a>';

//Code to display for for about us menu
menu_content[menu_content.length]='<a class=dropdowntext href="http://www.theprofitteam.com/aboutus.htm">Who are we?</a> | <a class=dropdowntext href="http://www.theprofitteam.com/coaches.htm">Our profit coaches</a>';

//Code to display the for resources
menu_content[menu_content.length]='<a class=dropdowntext href="http://www.theprofitteam.com/resources.htm">Resources menu</a> | <a class=dropdowntext href="http://www.theprofitteam.com/interactive.htm">Interactive Zone</a> | <a class=dropdowntext href="http://www.theprofitteam.com/free.htm">Free resources </a> | <a class=dropdowntext href="http://www.theprofitteam.com/links.htm">Useful links</a>';

//Code to display the contact menu
menu_content[menu_content.length]='<a class=dropdowntext href="http://www.theprofitteam.com/contact.htm">Contact us</a> | <a class=dropdowntext href=http://www.onlinepractice.co.uk/theprofitteam/registration.htm>Registration form</a> | <a class=dropdowntext href="http://www.multimap.com/map/browse.cgi?client=public&GridE=560849&GridN=99345&coordsys=gb&db=ap&lang=&addr1=O+G+K+V+Y+Booth+Associates,+2&client=public&Submit.x=0&advanced=true&addr2=Upperton+Gardens&Submit.y=0&addr3=Eastbourne&cname=Great+Britain&pc=BN212AH&coordsys=gb" target="_blank">View location map</a>';


menu_width= new Array(175,120,120,120,150,150);
function pushtheline(){

var width = 800, height = 600; // defaults


    switch(navigator.family)
    {
    case 'nn4':
      // Nav 4.x code fork...
		height = window.innerHeight;
		break;
    case 'ie4':
      // IE 4/5 code fork...
		height = document.body.clientHeight;
	if (height>201){

		contentarea.height=height-90

		}
		break;
    case 'gecko':
      // Standards Compliant code fork...
		height = window.innerHeight;
      break;
    }
	


}