///////////////////// 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 header      = new Array();  // Header
var navigation  = new Array();  // Navigation
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 ==================== //
header[0]       = '<table>';
header[1]       = '<tr>';
header[2]       = '<td width="286"><a href="http://www.hydrotekintl.com/index.html"><img src="http://www.hydrotekintl.com/images/hydroteklogo.JPG"/></a><br></td>';
header[3]       = '<td align="right" valign="middle" width="614">';
header[4]       = '<h1>Hydrotek International, Inc.</h1>';
header[5]       = '<h3><i>"When reliability really counts."</i></h3>';
header[6]       = '</td>';
header[7] 		= '</tr>';
header[8]		= '<tr>';
header[9]		= '<td width="286" align="center"><b>ISO 9001 Certified</b><br></td>';
header[10]		= '<td></td>';
header[11]		= '</tr>';
header[12]		= '</table>';


// ==================== Navigation ==================== //

navigation[0]   = '<div class="horizontalcssmenu">';
navigation[1]   = '<ul id="blue">';
navigation[2]   = '<li><a href="http://www.hydrotekintl.com/products.html" >Products</a></li>';
navigation[3]   = '<li><a href="http://www.hydrotekintl.com/specs.html">Engineering Specifications</a></li>';
navigation[4]   = '<li><a href="http://www.hydrotekintl.com/troubleshooting.html">Troubleshooting</a></li>';
navigation[5]   = '<li><a href="http://www.hydrotekintl.com/contact.html">Contact Us</a></li>';
navigation[6] 	= '</ul>';
navigation[7]	= '<br style="clear: left;" />';
navigation[8]	= '</div>';
navigation[9]	= '<br>';

// ==================== Footer ==================== //

footer[0]	 = '<hr>';
footer[1]    = '<font size="1">Copyright &copy; 2009 Hydrotek International, Inc. All Rights Reserved</font><br>';

/////////////////////////////////// DO NOT EDIT BELOW ///////////////////////////


function show(i)
 {
  for (x in i)
  {
   document.write(i[x]+'\n')
  }
 }