﻿function whereToBuyRollovers() { 
	parents = getElementsByClassName("retailerLogo", "div", document.getElementById("whereToBuyLogos"));
	setRollovers(parents);
}
/*
window.onload= function() {
	navRollovers();
	whereToBuyRollovers();
};
*/

function initWTB() {
	navRollovers();
	whereToBuyRollovers();
}

$addHandler(window,"load",initWTB);

function hide(a) {
	a.parentNode.parentNode.parentNode.className="hide";
}

function toggle(el) {

	/*var vis = el.parentNode.parentNode.parentNode.className;
	var x = (vis=="show")?"hide":"show";
	el.parentNode.parentNode.parentNode.className = x;
	*/
	el.parentNode.parentNode.parentNode.className= (el.parentNode.parentNode.parentNode.className=="show")?"hide":"show";
	//console.log(el.parentNode.parentNode.parentNode.className);
}
