function showPhoto(id,dir){
	getDiv = document.getElementById(id);
	getDiv.innerHTML = '<a href="javascript:hidePhoto(\'' + id + '\',\''+ dir +'\');"><img src="'+ dir +'/' + id + '.jpg"></a>';
	getDiv.style.width = '500px';
	getDiv.style.height = '375px';
}
function hidePhoto(id,dir){
	getDiv = document.getElementById(id);
	getDiv.innerHTML = '<a href="javascript:showPhoto(\'' + id + '\',\''+ dir + '\');"><img src="' + dir +'/s/' + id + '.jpg"></a>';
	getDiv.style.width = '160px';
	getDiv.style.height = '120px';
}
function showMenu(id){

	getDiv = document.getElementById('menu' + id);
	if (getDiv.style.display == 'none'){
		getDiv.style.display = '';
		if (id == 11 || id == 12)getDiv.style.marginTop = '-8px';
	}else{
		getDiv.style.display = 'none';
	}
}
