/**
 * @author nexum AG
 */

function logoCollectionOver(id) {
	if (id == "logoCollectionFussball")
		document.getElementById(id).style.background = "transparent url('sportdigital/image/banner/fussball_hover.png') 0 0 no-repeat";
		
	if (id == "logoCollectionDvl")
		document.getElementById(id).style.background = "transparent url('sportdigital/image/banner/dvl_hover.png') 0 0 no-repeat";
	
	if (id == "logoCollectionBbl")
		document.getElementById(id).style.background = "transparent url('sportdigital/image/banner/bbl_hover.png') 0 0 no-repeat";
	
	if (id == "logoCollectionHbl")
		document.getElementById(id).style.background = "transparent url('sportdigital/image/banner/hbl_hover.png') 0 0 no-repeat";
	return false;
}
 
function logoCollectionOut(id) {
	if (id == "logoCollectionFussball")
		document.getElementById(id).style.background = "transparent url('sportdigital/image/banner/fussball.png') 0 0 no-repeat";
		
	if (id == "logoCollectionDvl")
		document.getElementById(id).style.background = "transparent url('sportdigital/image/banner/dvl.png') 0 0 no-repeat";
	
	if (id == "logoCollectionBbl")
		document.getElementById(id).style.background = "transparent url('sportdigital/image/banner/bbl.png') 0 0 no-repeat";
	
	if (id == "logoCollectionHbl")
		document.getElementById(id).style.background = "transparent url('sportdigital/image/banner/hbl.png') 0 0 no-repeat";
	return false;
}
