//"HOME, SEARCH, SITEMAP, help AND CONTACT"  IN THE HORIZONTAL TOPBAR

topbarButtons_section="dummy"
topbarButtons_clicked = false

// PRE-LOAD IMAGES BUTTONS IN TOPBAR
if(document.images) {


button_contact_off = new Image()
button_contact_off.src = "/images/pensioenfonds/icoon_contact_off.gif"
button_contact_on = new Image()
button_contact_on.src = "/images/pensioenfonds/icoon_contact_on.gif"

button_search_off = new Image()
button_search_off.src = "/images/pensioenfonds/icoon_zoek_off.gif"
button_search_on = new Image()
button_search_on.src = "/images/pensioenfonds/icoon_zoek_on.gif"

button_sitemap_off = new Image()
button_sitemap_off.src = "/images/pensioenfonds/icoon_sitemap_off.gif"
button_sitemap_on = new Image()
button_sitemap_on.src = "/images/pensioenfonds/icoon_sitemap_on.gif"

button_home_off = new Image()
button_home_off.src = "/images/pensioenfonds/icoon_home_off.gif"
button_home_on = new Image()
button_home_on.src = "/images/pensioenfonds/icoon_home_on.gif"

button_telefoon_off = new Image()
button_telefoon_off.src = "/images/pensioenfonds/icoon_telefoon_off.gif"
button_telefoon_on = new Image()
button_telefoon_on.src = "/images/pensioenfonds/icoon_telefoon_on.gif"

visit_searchbox_off= new Image();
visit_searchbox_off.src="/images/pensioenfonds/searchbox/ft_visit_off.gif";
visit_searchbox_on= new Image();
visit_searchbox_on.src="/images/pensioenfonds/searchbox/ft_visit_on.gif";

search_searchbox_on= new Image();
search_searchbox_on.src="/images/pensioenfonds/searchbox/ft_search_on.gif";
search_searchbox_off= new Image();
search_searchbox_off.src="/images/pensioenfonds/searchbox/ft_search_off.gif";

faq_searchbox_on= new Image();
faq_searchbox_on.src="/images/pensioenfonds/searchbox/knop_faq_on.gif";
faq_searchbox_off= new Image();
faq_searchbox_off.src="/images/pensioenfonds/searchbox/knop_faq_off.gif";

addresses_searchbox_on= new Image();
addresses_searchbox_on.src="/images/pensioenfonds/searchbox/knop_addresses_on.gif";
addresses_searchbox_off= new Image();
addresses_searchbox_off.src="/images/pensioenfonds/searchbox/knop_addresses_off.gif";

tel_searchbox_on= new Image();
tel_searchbox_on.src="/images/pensioenfonds/knop_telefoon_on.gif";
tel_searchbox_off= new Image();
tel_searchbox_off.src="/images/pensioenfonds/knop_telefoon_off.gif";

togglingText_empty = new Image()
togglingText_empty.src = "/images/pensioenfonds/textfield_empty.gif"
togglingText_button_help = new Image()
togglingText_button_help.src = "/images/pensioenfonds/togglingText_button_help.gif"
togglingText_button_contact = new Image()
togglingText_button_contact.src = "/images/pensioenfonds/textfield_knop_contact.gif"
togglingText_button_search = new Image()
togglingText_button_search.src = "/images/pensioenfonds/textfield_knop_search.gif"
togglingText_button_sitemap = new Image()
togglingText_button_sitemap.src = "/images/pensioenfonds/textfield_knop_sitemap.gif"
togglingText_button_home = new Image()
togglingText_button_home.src = "/images/pensioenfonds/textfield_knop_home.gif"
togglingText_button_telefoon = new Image()
togglingText_button_telefoon.src = "/images/pensioenfonds/textfield_knop_telefoon.gif"

}

// ONMOUSEOVER FUNCTIONS 
function topbarButtons_imageOn(image){
	if (document.images){
		imgOn = eval(image + "_on.src");
		document [image].src = imgOn;
		if(topbarButtons_clicked!=true && (image=='button_search'||image=='button_sitemap'||image=='button_contact'||image=='button_help'||image=='button_home'||image=='button_telefoon')){
			src = eval("togglingText_" + image + ".src")
			document ['togglingText'].src = src
		}
	}
}

function topbarButtons_imageOff(image){
	if (document.images && topbarButtons_section != image){
		imgOff = eval(image + "_off.src");
		document [image].src = imgOff;
		if(topbarButtons_clicked==false && (image=='button_search'||image=='button_sitemap'||image=='button_contact'||image=='button_help'||image=='button_home'||image=='button_telefoon')){
			document ['togglingText'].src = togglingText_empty.src
		}
	}
}       

function topbarButtons_imageOffold(image){
	if(image=='button_search'||image=='button_sitemap'||image=='button_contact'||image=='button_help'||image=='button_home'){
		topbarButtons_clicked=true
	}
	if (document.images && topbarButtons_section != 'dummy'){
		imgOff = eval(image + "_off.src");
		document [image].src = imgOff;
	}
}

