// site wide javascript

function start_ie6_li_hovers() {
	if (document.all && document.getElementById) {
		document.getElementById("tn4").onmouseover=function() {
			this.className="over";
		}
		document.getElementById("tn4").onmouseout=function() {
			this.className=this.className.replace("over","");
		}
		document.getElementById("bn1").onmouseover=function() {
			this.className="over";
		}
		document.getElementById("bn1").onmouseout=function() {
			this.className=this.className.replace("over","");
		}
	}
}


var preloaded = new Array();

function preload_images() {
    for (var i = 0; i < arguments.length; i++){
        preloaded[i] = document.createElement('img');
        preloaded[i].setAttribute('src',arguments[i]);
    };
};

preload_images(
    '/images/ln_canine_f2.jpg',
    '/images/ln_feline_f2.jpg',
    '/images/ln_equine_f2.jpg',
    '/images/ln_avian_f2.jpg',
    '/images/tn_viewcart_f2.jpg',
	'/images/tn_login_f2.jpg',
	'/images/tn_aboutus_f2.jpg',
	'/images/tn_news_f2.jpg',
	'/images/tn_findastore_f2.jpg',
	'/images/bn_family_f2.jpg',
	'/images/bn_health_f2.jpg',
	'/images/bn_contact_f2.jpg',
	'/images/bn_help_f2.jpg',
	'/images/bn_link_f2.jpg',
	'/images/bn_sitemap_f2.jpg',
	'/images/bn_tellafriend_f2.jpg',
	'/images/bn_go_f2.jpg'
);

// function/array set for handling plos (page load objects)
function set_plos() {
	window.onload = plos_go;
}

function plos_go() {
	for(var i = 0;i < plos.length;i++)
		eval(plos[i]);
}

function plo_add(jso){
	plos[plos.length] = jso;
}

var plos = new Array();

// set each function to initialize on page load here
plo_add('start_ie6_li_hovers()');

set_plos();


