5////////////////////////////////////////////////////////////////////////////
// dropdowntext.js 
// 
// Written By powerweb Web Development
//
// Date: 29 Nov 2001
//
//

var activeMenu=""
var left_corner_y = 117; // y-coordinate of top left corner of dropdown menu 
var back_color = '#141e78'; // 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 about menu
menu_content[menu_content.length]='<a class=dropdowntext href="http://www.williamhinton.co.uk/about.htm">About us</a> | <a class=dropdowntext href="http://www.williamhinton.co.uk/philosophy.htm">Our philosophy</a> | <a class=dropdowntext href="http://www.williamhinton.co.uk/profiles.htm">Our team</a> | <a class=dropdowntext href="http://www.williamhinton.co.uk/back.htm">Background</a> | <a class=dropdowntext href="http://www.avn.co.uk" target="_blank">About the AVN</a>';
//Code to display the contact menu
menu_content[menu_content.length]='<a class=dropdowntext href="http://www.williamhinton.co.uk/contact.htm">Contact details</a> | <a class=dropdowntext href="http://www.avnmembers.co.uk/wh/register.htm">Registration form</a> | <a class=dropdowntext href="http://www.multimap.com/p/browse.cgi?pc=GL541AF&GridE=&GridN=&scale=10000&title=&cat=h" target="_blank">Location Map</a>';
//Code to display the services menu
menu_content[menu_content.length]='<a class=dropdowntext href="http://www.williamhinton.co.uk/services.htm">Our services</a> | <a class=dropdowntext href="http://www.williamhinton.co.uk/compliance.htm">Compliance services</a> | <a class=dropdowntext href="http://www.williamhinton.co.uk/added.htm">Added value services</a> | <a class=dropdowntext href="http://www.williamhinton.co.uk/surestart.htm">Surestart</a> | <a class=dropdowntext href="http://www.williamhinton.co.uk/businessbuilder.htm">Business Builder</a> | <a class=dropdowntext href="http://www.williamhinton.co.uk/businessedge.htm">Business Edge</a> | <a class=dropdowntext href="http://www.williamhinton.co.uk/makingithappen.htm">Making it Happen</a> | <a class=dropdowntext href="http://www.williamhinton.co.uk/boardview.htm">Boardview</a> | <a class=dropdowntext href="http://www.williamhinton.co.uk/systembuilder.htm">System Builder</a> | <a class=dropdowntext href="http://www.williamhinton.co.uk/sstw.htm">SSTW</a>';
//Code to display for news menu
menu_content[menu_content.length]='<a class=dropdowntext href="http://www.williamhinton.co.uk/news.htm">Business news</a> | <a class=dropdowntext href="http://www.williamhinton.co.uk/practice.htm">Practice news</a>';
//Code to display for free resources menu
menu_content[menu_content.length]='<a class=dropdowntext  href="http://www.avnmembers.co.uk/ard/?ID=127&SID=1" >Free resources </a> | <a class=dropdowntext  href="http://www.avnmembers.co.uk/ard/?ID=127&SID=2" >Links</a>';
//Code to display for links menu
menu_content[menu_content.length]='<a class=dropdowntext  href="favourites.htm" >Our favourites</a> | <a class=dropdowntext  href="startups.htm" >Start Ups</a> | <a class=dropdowntext  href="freebies.htm" >Freebies</a> | <a class=dropdowntext  href="creative.htm" >Creative thinking</a> | <a class=dropdowntext  href="govtsites.htm" >Government sites</a> | <a class=dropdowntext  href="businfo.htm" >Business information</a> | <a class=dropdowntext  href="busnews.htm" >Business news</a> | <a class=dropdowntext  href="perfin.htm" >Personal Finance</a> | <a class=dropdowntext  href="marketing.htm" >Marketing</a> | <a class=dropdowntext  href="searchengines.htm" >Search engines</a>';


menu_width= new Array(126,127,133,125,125,120);
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;
    }
	


}