// JavaScript Document

  if (document.images)
   {
     tab1homehover = new Image(120,55);
     tab1homehover.src="images/tabHomeHover.png";  

     tab2abouthover= new Image(120,55);
     tab2abouthover.src="images/tabAboutHover.png";
     
     tab3serviceshover = new Image(120,55);
     tab3serviceshover.src="images/tabServicesHover.png";  

     tab4testimonialshover= new Image(120,55);
     tab4testimonialshover.src="images/tabTestimonialsHover.png";
	 
     tab5testimonialshover= new Image(120,55);
     tab5testimonialshover.src="images/tabContactHover.png";	 
   }


function tab1Up()
 {
   el = document.getElementById('tab1');
   el.src = 'images/tabHomeHover.png';
 }
 
 function tab1Down()
 {
   el = document.getElementById('tab1');
   el.src = 'images/tabHome.png';
 }
 
 function tab2Up()
 {
   el = document.getElementById('tab2');
   el.src = 'images/tabAboutHover.png';
 }
 
 function tab2Down()
 {
   el = document.getElementById('tab2');  
   el.src = 'images/tabAbout.png';
 }
 
  function tab3Up()
 {
   el = document.getElementById('tab3');
   el.src = 'images/tabServicesHover.png';
 }
 
 function tab3Down()
 {
   el = document.getElementById('tab3');  
   el.src = 'images/tabServices.png';
 }
 
  function tab4Up()
 {
   el = document.getElementById('tab4');
   el.src = 'images/tabTestimonialsHover.png';
 }
 
 function tab4Down()
 {
   el = document.getElementById('tab4');  
   el.src = 'images/tabTestimonials.png';
 }
 
  function tab5Up()
 {
   el = document.getElementById('tab5');
   el.src = 'images/tabContactHover.png';
 }
 
 function tab5Down()
 {
   el = document.getElementById('tab5');  
   el.src = 'images/tabContact.png';
 }
 
