//Image preloader
imageSource = new Array (
	"images/bg-startpage-prodlist.gif",
	"images/bg-product-list.gif",
	"images/bg-news-head.gif",
	"images/bg-maincategory-left.gif",
	"images/bg-maincategory-right.gif",
	"images/bg-maincategory.gif",
	"images/arrow-green-small.gif",
	"images/arrow-green-big.gif",
	"images/arrow-newslink.gif",
	"images/arrow-subnav-level1.gif",
	"images/arrow-subnav-level2.gif",
	"images/bg-subnav-head.gif",
	"images/bg-subnav-bottom.gif",
	"images/bg-orderlayer.gif",
	"images/btn-order-stanna-kvar.gif",
	"images/btn-order-vidare-bestaell.gif",
	"images/btn-din-kundvagn.gif",
	"images/btn-din-kundvagn-active.gif",
	"images/arrow-head-accessories.gif",
	"images/arrow-head-accessories-a.gif",
	"images/bg-head-bestaellning.jpg",
	"images/bg-head-bestaellning-h.jpg"
);

imageList = new Array ();

for (counter in imageSource) {
    imageList[counter] = new Image();
    imageList[counter].src = imageSource[counter];
}

//Remove outline around links
function removeFocusOnAllLinks(){
for(var i=0 ; i < document.links.length ; i++)
document.links[i].onfocus=blurLink;
}

function blurLink() {
if (this.blur) this.blur();
}

window.onload=removeFocusOnAllLinks;

//Show accessories (toggle visible/hidden)
function showAccessories(object) {
	thisStyle = document.getElementById('accessories' + object).className;
	//thisArrow = document.getElementById('accessArrow' + object).src;
	if (thisStyle == "acccessoriesView1") {
		document.getElementById('accessories' + object).className = "acccessoriesView2";
		document.getElementById('accessArrow' + object).src = "images/arrow-head-accessories-a.gif";
	}
	else {
		document.getElementById('accessories' + object).className = "acccessoriesView1";
		document.getElementById('accessArrow' + object).src = "images/arrow-head-accessories.gif";
	}
}
