$(function() {
	$('#nav').droppy();
});
var id;
function SwitchPhoto(id){
	var detailph_photo;
	var detailph_comment;
	var src_photo;
	var src_comment;
	
	detailph_photo=document.getElementById('detailph_photo');
	detailph_comment=document.getElementById('detailph_comment');
	src_photo=document.getElementById('photo' + id);
	src_comment=document.getElementById('comment' + id);

	detailph_photo.src=src_photo.src;
	detailph_comment.innerHTML=src_comment.innerHTML;
}
function mapWin(theURL,winName,features){
	window.open(theURL,'map',"width=600,height=700,scrollbars=yes,status=no,resizable=no,toolbar=yes,location=no,menubar=no");
}

