// JScript source code

var panels = ["introduction", "restaurant", "ma", "bigh", "testimonials", "wrbm", "contact"];
		
		// apply css class to all panels except the one supplied
		function hidePanels(panel) {
			for(var i = 0; i < panels.length; i++) {
				if(panels[i] == panel)
					continue;
	
				var d = document.getElementById(panels[i]);
	
				if(!d)
					continue;
				
				d.className = "panel donotdisplay";
			}
	
			var d = document.getElementById(panel);
	
			if(d)
				d.className = "panel";
	
			window.print();

			window.setTimeout(resetPrint, 1000);
		}

function resetPrint() {
	for(var i = 0; i < panels.length; i++) {
				var d = document.getElementById(panels[i]);
	
				if(!d)
					continue;
				
				d.className = "panel";
			}
}
