//rollovers
 if (document.images) {

                var Over = new Array();
                Over["About"] = new Image();
                Over["About"].src = "images/about_but_on.gif";
                Over["Parties"] = new Image();
                Over["Parties"].src = "images/parties_but_on.gif";
                Over["Activities"] = new Image();
                Over["Activities"].src = "images/activities_but_on.gif";
		Over["Puppets"] = new Image();
                Over["Puppets"].src = "images/puppets_but_on.gif";
		Over["Order"] = new Image();
                Over["Order"].src = "images/order_but_on.gif";
		Over["School"] = new Image();
                Over["School"].src = "images/school_but_on.gif";
                Over["Contact"] = new Image();
                Over["Contact"].src = "images/contact_but_on.gif";
                
                var Off = new Array();
                Off["About"] = new Image();
                Off["About"].src = "images/about_but.gif";
                Off["Parties"] = new Image();
                Off["Parties"].src = "images/parties_but.gif";
                Off["Activities"] = new Image();
                Off["Activities"].src = "images/activities_but.gif";
		Off["Puppets"] = new Image();
                Off["Puppets"].src = "images/puppets_but.gif";
		Off["Order"] = new Image();
                Off["Order"].src = "images/order_but.gif";
		Off["School"] = new Image();
                Off["School"].src = "images/school_but.gif";
                Off["Contact"] = new Image();
                Off["Contact"].src = "images/contact_but.gif";
				}
                
        function imgOver(stat) {
                window.status = stat;
                if (document.images) {
                        document.images[stat].src = Over[stat].src;
                }
        }
        function imgOff(stat) {
                window.status = "";
                if (document.images) {
                        document.images[stat].src = Off[stat].src;
                }    
        }


//pop-up windows
function n_window(theurl)
{
 // set the width and height
 var the_width=450;
 var the_height=450;
 // set window position
 var from_top=20;
 var from_left=20;
 // set other attributes
 var has_toolbar='no';
 var has_location='no';
 var has_directories='no';
 var has_status='no';
 var has_menubar='no';
 var has_scrollbars='yes';
 var is_resizable='yes';
 // attributes put together
 var the_atts='width='+the_width+',height='+the_height+',top='+from_top+',screenY='+from_top+',left='+from_left+',screenX='+from_left;
 the_atts+=',toolbar='+has_toolbar+',location='+has_location+',directories='+has_directories+',status='+has_status;
 the_atts+=',menubar='+has_menubar+',scrollbars='+has_scrollbars+',resizable='+is_resizable;
 // open window
 window.open(theurl,'',the_atts);
}




function newWindow(puppetjpg) {
		puppetWindow = window.open(puppetjpg, "bookWin", "width=500,height=500")
		puppetWindow.focus()
	}


