var ActiveID = "";
function imageChange(imageName,objPanel) {
	if (ActiveID != imageName) {
		//document.getElementById("global").style.backgroundImage = 'url(/images/banner1' + imageName + '.gif)';
		ActiveID = imageName;
	}
	if (objPanel) {
		//if (imageName == 'b' || imageName == 'd') {
			document.getElementById('smart_pack' + imageName).style.backgroundColor = '#EEEEEE'; //change the current panel
			objPanel.onmouseout = function() {
				if (ActiveID == 'b' || ActiveID == 'd') {
					document.getElementById('smart_pack' + ActiveID).style.backgroundColor = '#BCC9D6'; //change the old one back
				} else {
					document.getElementById('smart_pack' + ActiveID).style.backgroundColor = '#CCD6E0'; //change the old one back
				}
			}
		//}
	}
}

function customiseChange(block) {
	document.getElementById('custom_package').style.backgroundColor = '#EEEEEE';
	block.onmouseout = function() {
		document.getElementById('custom_package').style.backgroundColor = '#BCC9D6';
	}
}

function change(tagid, newClass) {
	identity = document.getElementById(tagid);
	identity.className=newClass;
}