var isIE = ((document.all)? true  : false );
var isNS6 = ((document.getElementById && !document.all)? true: false );


if (!document.getElementById){
	document.getElementById = function (id){
							if (document.all){
								return document.all[id];
							}
						}
}


var fatherNames = ["","navHomepage","navCommittees","navAbstract","navFees","navScientific","navRegistration","navTravel","navAccommodations","navTours","navAbout","navLinks","navContact","navHome","navSpeakers", "navAuspices", "navExhibitions", "navAgenda", "navPost" ];
var fatherOnImgs = [];
var fatherOffImgs = [];
var fixNav = 0;

for (var i=1; i<=18; i++){
	fatherOnImgs [i] = new Image ();	
	fatherOffImgs [i] = new Image ();
}
	
fatherOnImgs [1].src = "images/nav_homepageon.gif";
fatherOnImgs [2].src = "images/nav_committeesON.gif";
fatherOnImgs [3].src = "images/nav_abstractON.gif";
fatherOnImgs [4].src = "images/nav_feesON.gif";
fatherOnImgs [5].src = "images/nav_scientificON.gif";
fatherOnImgs [6].src = "images/nav_registrationON.gif";
fatherOnImgs [7].src = "images/nav_travelON.gif";
fatherOnImgs [8].src = "images/nav_accommodationsON.gif";
fatherOnImgs [9].src = "images/nav_toursON.gif";
fatherOnImgs [10].src = "images/nav_aboutON.gif";
fatherOnImgs [11].src = "images/nav_linksON.gif";
fatherOnImgs [12].src = "images/nav_contactON.gif";
fatherOnImgs [13].src = "images/nav_homeON.gif";
fatherOnImgs [14].src = "images/nav_SpeakersON.gif";
fatherOnImgs [15].src = "images/nav_AuspicesON.gif";
fatherOnImgs [16].src = "images/nav_exhibitionsON.gif";
fatherOnImgs [17].src = "images/nav_agendaON.gif";
fatherOnImgs [18].src = "images/nav_postON.gif";

fatherOffImgs [1].src = "images/nav_homepage.gif";
fatherOffImgs [2].src = "images/nav_committees.gif";
fatherOffImgs [3].src = "images/nav_abstract.gif";
fatherOffImgs [4].src = "images/nav_fees.gif";
fatherOffImgs [5].src = "images/nav_scientific.gif";
fatherOffImgs [6].src = "images/nav_registration.gif";
fatherOffImgs [7].src = "images/nav_travel.gif";
fatherOffImgs [8].src = "images/nav_accommodations.gif";
fatherOffImgs [9].src = "images/nav_tours.gif";
fatherOffImgs [10].src = "images/nav_about.gif";
fatherOffImgs [11].src = "images/nav_links.gif";
fatherOffImgs [12].src = "images/nav_contact.gif";
fatherOffImgs [13].src = "images/nav_home.gif";
fatherOffImgs [14].src = "images/nav_speakers.gif";
fatherOffImgs [15].src = "images/nav_auspices.gif";
fatherOffImgs [16].src = "images/nav_exhibitions.gif";
fatherOffImgs [17].src = "images/nav_agenda.gif";
fatherOffImgs [18].src = "images/nav_post.gif";







function navOver(navNum , isOver ){
	if (!document.images[ fatherNames[navNum] ] || fixNav==navNum )return ; 
	
	if (isOver){
		document.images[ fatherNames[navNum] ].src =  fatherOnImgs[navNum].src ;
	}else{
		document.images[ fatherNames[navNum] ].src =  fatherOffImgs[navNum].src ;
	}

}

function markNav(){
	document.images[ fatherNames[fixNav] ].src =  fatherOnImgs[fixNav].src ;
	document.getElementById("nav"+fixNav).className = "sel" ; 
}
