function showBoxLayer(name) {
	$(name).fade('hide'); 
	$(name).fade('in');
}

function hideBoxLayer(name) {
	$(name).fade('out');
}