function init(){
	var header = document.getElementById('header');
	header.setAttribute('onmouseover', 'showItems()');
}
function showItems(){
	$('wrapper').style.display = "block";
}
function $(id){
	return document.getElementById(id);
}


