function nothing() {
	return;
}

ie4 = (document.all)? true:false

        if (document.images)
		{
            img1on = new Image();      
            img1on.src = "images/intro_on.gif"; 
			 
            img3on = new Image();
            img3on.src = "images/town_on.gif";
            img4on = new Image();
            img4on.src = "images/region_on.gif";

            img6on = new Image();
            img6on.src = "images/symbols_on.gif";
            img7on = new Image();
            img7on.src = "images/airport_on.gif";

            img9on = new Image();
            img9on.src = "images/booking_on.gif";
            img10on = new Image();
            img10on.src = "images/help_on.gif";
            img11on = new Image();
            img11on.src = "images/purchase_on.gif";
			img12on = new Image();
			img12on.src = "images/contact_on.gif";
			img13on = new Image();
			img13on.src = "images/user_on.gif";


            img1off = new Image(); 
            img1off.src = "images/intro_off.gif"; 

            img3off = new Image();
            img3off.src = "images/town_off.gif";
			img4off = new Image();
            img4off.src = "images/region_off.gif";

            img6off = new Image();
            img6off.src = "images/symbols_off.gif";
            img7off = new Image();
            img7off.src = "images/airport_off.gif";

            img9off = new Image();
            img9off.src = "images/booking_off.gif";
            img10off = new Image();
            img10off.src = "images/help_off.gif";
            img11off = new Image();
            img11off.src = "images/purchase_off.gif";
			img12off = new Image();
			img12off.src = "images/contact_off.gif";
			img13off = new Image();
			img13off.src = "images/user_off.gif";

        }

// OnMouseOver function to change images
function imgOn(imgName)
 {
        if (document.images)
		{
            document[imgName].src = eval(imgName + "on.src");
		}
		else document[imgName].src = eval(imgName + "on.src");
}

// OnMouseOut function to change images back again
function imgOff(imgName) 
{
        if (document.images)
		{
            document[imgName].src = eval(imgName + "off.src");
        }
		else document[imgName].src = eval(imgName + "off.src");
}

setTimeout ("changePage()", 3000);

function changePage() {
	if (self.parent.frames.length != 0)
		self.parent.location=document.location;
}

function bigPicture() {
	var w = window.open("","bigpicwindow","resizable,status,scrollbars,width=500,height=700");
	var d = w.document;
		d.writeln('<html><head><title>Full-size cover</title></head><BODY BGCOLOR=#ffffe0><div align=center>')
		d.writeln('<img src=images/guide2000.jpg width=462 height=653><BR> ');
		d.writeln('</div></body></html>')
}

function bigEntry() {
	var w = window.open("","bigpicwindow","resizable,status,scrollbars,width=800,height=330");
	var d = w.document;
		d.writeln('<html><head><title>Full-size entry</title></head><BODY BGCOLOR=#ffffe0><div align=center>')
		d.writeln('<img src="images/bigentrypic.jpg" width=750 height=286 border=0 alt=""><BR> ');
		d.writeln('</div></body></html>')
}