///////////////////// DSCRIPTS PRESENTS /////////////////////////////////////
//                                                                         //    
//   This script has been downloaded from http://dscripts.awardspace.com   //
//  ---------------------------------------------------------------------  //
//                                                                         //
//  Script Name: Javascript Include                                        //
//  Written on: 5 January 2007                                             //        
//  Written by: Burhan Uddin                                               //        
//                                                                         //      
//  Browse: http://dscripts.awardspace.com for more free scripts.          //
//                                                                         //
/////////////////////////////////////////////////////////////////////////////


// Script Begins from here ==================================//


// Declaring header footer and navigation as array variable

var menu      = new Array();  // Header
var footer	  = new Array();  // Footer	



// Put you html codes of header, footer and navigation separately in the three part of code block below.
// Put each line of html codes in each line inside the two single qute block ('[code]')
// You can put as many lines of html code as you wish. just increase the array number for each line line h[0], h[2] ......h[100],... h[1000]...
// Add this javascript inside header tag of your page i.e between <head> and </head>
// Don't forget to add the second script in all of your html pages where you need to header footer or navigation.
// Using this script you can put any repetable part of code inside this js file which will allow you to put and edit the same code of multiple pages easily.
// *** Important: Don't forget to add backslash ( \ ) everywhere you have a single quote inside your html codes. If you don't do it. This script wouldn't work.



////////////////////////////// Edit Below //////////////////////////////

// ==================== Header ==================== //
menu[0]       = '<!--header row starts here --><div style="height:20px; margin-LEFT:15px;position: relative; width:800px; "><div style="float:right"><img src="images/devlives.gif" height="18" width="128" border="0"></div></div><!--second row with logos starts here --><div style="background-color: #ffffff; margin:5px; margin-top:0px; margin-BOTTOM:0px; margin-LEFT:15px;position: relative; width:800px; "><div style="border-top: 1px solid #aaaaaa;  height: 55px; padding-top:18px"><table><tr><td width="100px"></td><td><a href="index.htm"><img src="images/eikondevlives.gif" height="30" width="196" border="0"></a></td></tr></table></div><!--menu row --><div class="text" style="background-color: #f9f9f9;">';


// ==================== Menu ==================== //
menu[1]       = '<div style=""><span class="space">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;</span><a class="menulk" href="index.htm">Home</a><a class="menulk" href="schools_intro.htm">Schools</a><a class="menulk" href="family_support.htm">Family Support</a><a class="menulk" href="young_people.htm">Young People</a><a class="menulk" href="transition.htm">Transition Project</a><a class="menulk" href="residentials.htm">Residentials</a><a class="menulk" href="getinv.htm">Get Involved</a><span class="spacer">&nbsp;&nbsp;&nbsp;&nbsp;iii</span>';


// ==================== Footer ==================== //
footer[0]       = '<div style="border-top:solid 1px #aaaaaa;"></div></div><div style=" margin-LEFT:15px;position: relative; width:800px; "><div style="float:right"><a href="aboutus.htm"><img src="images/aboutus.gif" height="17" width="53" border="0"></a><a href="contactus.php"><img src="images/contactus.gif" height="17" width="67" border="0"></a></div></div>';
/////////////////////////////////// DO NOT EDIT BELOW ///////////////////////////


function show(i)
 {
  for (x in i)
  {
   document.write(i[x]+'\n')
  }
 }