// JavaScript Document


function show(id_hide){
	document.getElementById('' + id_hide + '').style.display = ''; 
}

function hide(id_hide){
	document.getElementById('' + id_hide + '').style.display = 'none'; 
}

// Auto hide unhide, set css display 
// Mouse over and out
function auto_hide(id_hide){
	if (document.getElementById('' + id_hide + '').style.display == 'none'){
	document.getElementById('' + id_hide + '').style.display = ''; 
	}
	else {
		document.getElementById('' + id_hide + '').style.display = 'none'; 
	}
}

function bg_highlight(){
	this.style.background = 'url(images/web/bg_edge_1.gif) bottom left no-repeat';
}
function bg_highlight_off(){
	this.style.background = 'url(images/web/bg_edge.gif) bottom left no-repeat';
}

function wd_auto_hide(id_hide){
		var number="1";
		while (number<=8){
		document.getElementById('wd_0' + number + '').style.display = 'none'; 
		number++;
		}
		document.getElementById('' + id_hide + '').style.display = ''; 
}