// if ( ll == "" ) ll = 0;

    var linkplacement = "";
    var i;
    for ( i = 0; i < ll; i++ ) {
      linkplacement = linkplacement + "../";
    }

if (document.images) {            // Active Images
	img01on = new Image();      
	img01on.src = linkplacement + "images/nav/btn_home_over.gif"; 
	img02on = new Image(); 
	img02on.src = linkplacement + "images/nav/btn_ourservice_over.gif";  
	img03on = new Image();
	img03on.src = linkplacement + "images/nav/btn_about1call_over.gif";
	img04on = new Image();
	img04on.src = linkplacement + "images/nav/btn_faq_over.gif";
	img05on = new Image();
	img05on.src = linkplacement + "images/nav/btn_testimonials_over.gif";
	img06on = new Image();
	img06on.src = linkplacement + "images/nav/btn_contact_over.gif";
	img07on = new Image();
	img07on.src = linkplacement + "images/nav/btn_requestquote_over.gif";
            
	img01off = new Image(); 
	img01off.src = linkplacement + "images/nav/btn_home.gif"; 
	img02off = new Image();          
	img02off.src = linkplacement + "images/nav/btn_ourservice.gif"; 
	img03off = new Image();
	img03off.src = linkplacement + "images/nav/btn_about1call.gif";
	img04off = new Image();
	img04off.src = linkplacement + "images/nav/btn_faq.gif";
	img05off = new Image();
	img05off.src = linkplacement + "images/nav/btn_testimonials.gif";
	img06off = new Image();
	img06off.src = linkplacement + "images/nav/btn_contact.gif";
	img07off = new Image();
	img07off.src = linkplacement + "images/nav/btn_requestquote.gif";

}
// Function to 'activate' images.
function imgOn(imgName) {
	if (document.images) {
		document[imgName].src = eval(imgName + "on.src");
	}
}
// Function to 'deactivate' images.
function imgOff(imgName) {
	if (document.images) {
		document[imgName].src = eval(imgName + "off.src");
	}
}

// Function to display current date
function todaydate() {

  var dayName = new Array("Sunday","Monday","Tuesday","Wednesday","Thursday","Friday","Saturday");
  var monthName = new Array("January","February","March","April","May","June","July","August","September","October","November","December");
  var time = new Date();
  var aDay = 24*60*60*1000;
  var days = 0;
  var year = time.getYear();

  if ((navigator.appName == "Microsoft Internet Explorer") && (year < 2000))		
	year="19" + year;
	if (navigator.appName == "Netscape")
		year=1900 + year;
		var todaysDate = new Date();

  document.write(dayName[todaysDate.getDay()] + ", " + monthName[todaysDate.getMonth()] + " " + todaysDate.getDate() + ", " + year);
}

function popup(URL) {
  // URL is the passed in parameter where you specified your popup page
  // 0 means no, set toolbars = 0 means you don't want a toolbar to show up in your popup.
  // if you want a toolbar, set it to 1.  Other attributes work the same.
  window.open(URL,"popup01","'toolbars=0,width=670,height=525,menubar=0,scrollbars=1,resize=0'");
}
function popup2(URL) {
  window.open(URL,"popup01","'toolbars=0,width=670,height=570,menubar=0,scrollbars=1,resize=0'");
}
