

function showhide(showlayer,hidelayer) {
	$('#'+showlayer).css('display', 'block');
	$('#'+hidelayer).css('display', 'none');
}

