$(document).ready(function() {
	$(".btn-gallery").click(function(){
		$("#gallery").slideToggle("slow");
	    });
	$(".btn-pubs").click(function(){
		$("#pubs").slideToggle("slow");
	    });
    });
function closeGallery() {
    $("#gallery").slideToggle("slow");
}
function closePubs() {
    $("#pubs").slideToggle("slow");
}

function gallery(dir)
{
    window.document.open();
    window.document.write("\
<iframe id='gallery' src='"+dir+"gallery.html' width='800px' height='500px' hspace='0' vspace='0' frameborder='0' scrolling='no' style='position: absolute; left: 100px; top: 50px;padding:45px; background: url(shadow.png); display:none;'></iframe>\
    ");
    window.document.close();

    window.document.open();
    window.document.write("\
<iframe id='pubs' src='"+dir+"allpubs.html' width='800px' height='500px' hspace='0' vspace='0' frameborder='0' scrolling='no' style='position: absolute; left: 100px; top: 50px;padding:45px; background: url(shadow.png); display:none;'></iframe>\
    ");
    window.document.close();
}


