/*
	Behavior file for MyFP
*/

/*EventHelper.AddEvent(window, 'load', init, false);*/

function init() {
	
	var p = new ProductHelper();
	p.init();
	p.addListeners();
}

ProductHelper.prototype.addListeners = function() {
	var container = document.getElementById('template_content');
	var thePdfs = DomHelper.GetElementsByClassName('pdf', 'a', container);
	for (var i=0; i<thePdfs.length; i++) {
		EventHelper.AddEvent(thePdfs[i], 'click', this.newWin, false);
		if (SupportTest.isSafari) thePdfs[i].onclick = EventHelper.CancelClickSafari;
	}
}

sfHover = function() {
	var sfEls = document.getElementById("nav").getElementsByTagName("LI");
	for (var i=0; i<sfEls.length; i++) {
		sfEls[i].onmouseover=function() {
		this.className+=" sfhover";
		}
		sfEls[i].onmouseout=function() {
			this.className=this.className.replace(new RegExp(" sfhover\\b"), "");
		}
	}
}
if (window.attachEvent) window.attachEvent("onload", sfHover);
