//Show Hide opacity layers at the images modelu

function hidediv(id) {
	document.getElementById(id).style.display = 'none';
}

function showdiv(id) {
	document.getElementById(id).style.display = 'block';
}
