// JavaScript Document

image1 = new Image();
image1.src = "images/home_on.gif";

image2 = new Image();
image2.src = "images/location_on.gif";

image3 = new Image();
image3.src = "images/gallery_on.gif";

image4 = new Image();
image4.src = "images/staff _on.gif";

image5 = new Image();
image5.src = "images/aboutus_on.gif";

image6 = new Image();
image6.src = "images/contact.gif";

function resize_staff(imagename)
{
newWindow=window.open ('staff_englarged.html', 'newWin', 'resizable=no,menubar=no,toolbar=no,scrollbars=yes,location=no,width=600,height=600,top=30,left=30')
newWindow.document.write("<html><head><title>menu items</title><body bgcolor='#ffffff'>")
newWindow.document.write("<table  width='550' height='550' align='center'><tr><td align='center' valign='middle'>")
newWindow.document.write("<img src=' " + imagename + ".jpg' height='500' width='500'>")
newWindow.document.write("</td></tr></table></body></html>")
}
function resize_gallery(imagename)
{
newWindow=window.open ('staff_englarged.html', 'newWin', 'resizable=no,menubar=no,toolbar=no,scrollbars=yes,location=no,width=575,height=575,top=30,left=30')
newWindow.document.write("<html><head><title>menu items</title><body bgcolor='#000000'>")
newWindow.document.write("<table  width='550' height='550' align='center'  bgcolor='#00000'><tr><td align='center' valign='middle'>")
newWindow.document.write("<img src=' " + imagename + ".jpg' height='500' width='500'>")
newWindow.document.write("</td></tr></table></body></html>")
}