function change_image(image_file)
{
   document.all.services.src = image_file;
}

function change_image2(image_file)
{
   document.all.references.src = image_file;
}

function color_text(num)
{
   var section;
   var i;

   for (i = 1; i <= 8; i++)
   {
      section = document.getElementById("section" + i)

      if (i != num)
         section.className = "section_novis"
      else
         section.className = "section"
   }
}

//Hover-up Menu Bar: By Dynamicdrive.com
//Credit must stay intact for use
//Visit http://www.dynamicdrive.com for this script and more

//CSS stylesheet for menu bar
//Customize background color (#FFF2BF) and link color (black):
var cssdefinition='<style>\n.menuitems{\nborder:2px solid #2376C1;\n}\n\n.menuitems a{\ntext-decoration:none;\ncolor:white;\n}\n<\/style>'

//No need to edit beyond here
//alert(document.getElementById);
if (document.all||document.getElementById)
document.write(cssdefinition)

function over_effect(e,state, bgcolor){
if (document.all)
source4=event.srcElement
else if (document.getElementById)
source4=e.target
if (source4.className=="menuitems"){
source4.style.borderStyle=state
source4.style.backgroundColor=bgcolor
}
else{
while(source4.tagName!="DIV"){
source4=document.getElementById? source4.parentNode : source4.parentElement
if (source4.className=="menuitems"){
source4.style.borderStyle=state
source4.style.backgroundColor=bgcolor
}
}
}
}


/* This script and many more are available free online at
The JavaScript Source!! http://javascript.internet.com
Created by: Lee Underwood :: http://javascript.internet.com/ */

var userName = new Array();
  // insert the first part of the address below
  userName[0]="comment";
  userName[1]="owner";
  userName[2]="info";

var userNameFull = new Array();
  // Insert the name associated with the address
  // Important! Make sure the numbers line-up with the addresses above
  userNameFull[0]="Contact Webmaster";
  userNameFull[1]="Joseph Adoni";
  userNameFull[2]="E-Mail";

// Insert the domain name portion of the address below
var siteName = "djhoustontexas.com";

i=0;
do userName[i]='<a href=\"mailto:' + userName[i] + '@' + siteName + '\">' + userNameFull[i] + '</a>';
while(userName[++i])
// -->
