function hoverBrand(brandID, flag) {	
	div = document.getElementById("brand_" + brandID);
	arrows = new Array();
	arrows[0] = document.getElementById("brandarrow_1_" + brandID);
	arrows[1] = document.getElementById("brandarrow_2_" + brandID);
	icons = document.getElementById("brandicons_" + brandID);
	if (icons.childNodes.length > 0) {
		for (c = 0; c < icons.childNodes.length; c++) {
			icon = icons.childNodes[c];		
			src = icon.src;
			if (src != undefined) {			
				if (flag == true)
					new_src = src.replace("_gray", "_blue");
				else
					new_src = src.replace("_blue", "_gray");
				icon.src = new_src;
			}
		}
	}
	if (flag == true) {
		div.style.color = '#008fd6';
		arrows[0].src = "fileadmin/typo3data/img/arrow_blue_double.png";
		arrows[1].src = "fileadmin/typo3data/img/arrow_blue_double.png";
	} else {
		div.style.color = '#666666';
		arrows[0].src = "fileadmin/typo3data/img/arrow_gray_double.png";
		arrows[1].src = "fileadmin/typo3data/img/arrow_gray_double.png";
	}
}

function hoverProduct(productID, flag) {	
	div = document.getElementById("product_" + productID);
	arrow = document.getElementById("productarrow_1_" + productID);	
	if (flag == true) {
		div.style.color = '#008fd6';
		arrow.src = "fileadmin/typo3data/img/arrow_blue_double.png";
	} else {
		div.style.color = '#666666';
		arrow.src = "fileadmin/typo3data/img/arrow_gray_double.png";
	}
}
