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 = '#101a53'; // 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.johnseeley.co.uk/about.htm">About us</a> | <a class=dropdowntext href="http://www.johnseeley.co.uk/philosophy.htm">Our philosophy</a> | <a class=dropdowntext href="http://www.johnseeley.co.uk/testimonials.htm">What our clients say</a> | <a class=dropdowntext href="http://www.johnseeley.co.uk/profiles.htm">Our team</a> | <a class=dropdowntext href="http://www.johnseeley.co.uk/back.htm">Background</a>';
//Code to display the contact menu
menu_content[menu_content.length]='<a class=dropdowntext href="http://www.johnseeley.co.uk/contact.htm">Contact details</a> | <a class=dropdowntext href="http://www.onlinepractice.co.uk/js/register.htm">Registration form</a> | <a class=dropdowntext href="http://www.multimap.com/map/browse.cgi?pc=B675JR&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.johnseeley.co.uk/services.htm">Our services</a> | <a class=dropdowntext href="http://www.johnseeley.co.uk/compliance.htm">Compliance services</a>';
//Code to display for news menu
menu_content[menu_content.length]='<a class=dropdowntext href="http://www.johnseeley.co.uk/news.htm">Business news</a> | <a class=dropdowntext href="http://www.johnseeley.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=39&SID=7" >Free resources </a> | <a class=dropdowntext  href="http://www.onlinepractice.co.uk/ard/documents.asp?AID=39&SID=7&FID=5818" >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;
    }
	


}