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 = '#172156'; // the background color of dropdown menu 
var backColor = '#000000'; // 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.hayesandco.co.uk/about.htm">About Hayes &amp; Co</a> | <a class=dropdowntext href="http://www.hayesandco.co.uk/philosophy.htm">Our philosophy</a> | <a class=dropdowntext href="http://www.hayesandco.co.uk/profiles.htm">Our team</a> | <a class=dropdowntext href="http://www.hayesandco.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.hayesandco.co.uk/contact.htm">Contact details</a> | <a class=dropdowntext href="http://www.avnmembers.co.uk/hayes/register.htm">Registration form</a> | <a class=dropdowntext href="http://www.multimap.com/p/browse.cgi?pc=bb18al&GridE=&GridN=&scale=10000&title=&cat=h" target="_blank">Map (Blackburn)</a> | <a class=dropdowntext href="http://www.multimap.com/p/browse.cgi?pc=m460dr&GridE=&GridN=&scale=10000&title=&cat=h" target="_blank">Map (Atherton)</a>';
//Code to display the services menu
menu_content[menu_content.length]='<a class=dropdowntext href="http://www.hayesandco.co.uk/services.htm">Our services</a> | <a class=dropdowntext href="http://www.hayesandco.co.uk/compliance.htm">Compliance services</a> | <a class=dropdowntext href="http://www.hayesandco.co.uk/added.htm">Added value services</a> | <a class=dropdowntext href="http://www.hayesandco.co.uk/businessbuilder.htm">Business Builder</a> | <a class=dropdowntext href="http://www.hayesandco.co.uk/businessedge.htm">Business Edge</a> | <a class=dropdowntext href="http://www.hayesandco.co.uk/makingithappen.htm">Making it Happen</a> | <a class=dropdowntext href="http://www.hayesandco.co.uk/boardview.htm">Boardview</a> | <a class=dropdowntext href="http://www.hayesandco.co.uk/systembuilder.htm">System Builder</a>';
//Code to display for news menu
menu_content[menu_content.length]='<a class=dropdowntext href="http://www.hayesandco.co.uk/news.htm">Business news</a> | <a class=dropdowntext href="http://www.hayesandco.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=6&SID=1" >Free resources </a> | <a class=dropdowntext  href="http://www.avnmembers.co.uk/ard/?ID=6&SID=2" >Links</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;
    }
	


}