function select(id,param){
	document.getElementById(id).style.backgroundPosition = param;
}
function deselect(id){
	document.getElementById(id).style.backgroundPosition = '0 0';
}

function ShowElements(){
    document.getElementById('content').style.display = 'block';
	document.getElementById('menu_right').style.display = 'block';
}
