/* onmouseover-onmouseout code */
	function ImageOff(imgname){
		var OnImg;
		var Active = new Image();
		if (document.images)
			Active.src = "./images/"+imgname+"off.gif";
		document[imgname].src = Active.src;
	}

	function ImageOn(imgname){
		var OffImg;
		var Inactive = new Image();
		if (document.images)
			Inactive.src = "./images/"+imgname+"on.gif";
		document[imgname].src = Inactive.src;
	}

	function activate(imgname, imgsrc){
		if(document.images)
	   		document[imgname].src = imgsrc;
	}
	
	function inactivate(imgname, imgsrc){
		if(document.images)
	   		document[imgname].src = imgsrc;
	}
	// These are the functions that will open the
	// new windows when the mouse is moved over the bio name
	function open_jess_window() 
	{
		new_window = open("","hoverwindow","width=400,height=198,left=300,top=300");

		// open new document 
		new_window.document.open();

		// Text of the new document
		// Replace your " with ' or \" or your document.write statements will fail
		new_window.document.write("<html><title>Jessica Savinelli Verrill</title><head><link href=\"p7csslm/p7csslm07.css\" rel=\"stylesheet\" type=\"text/css\" /></head>");
		new_window.document.write("<body bgcolor=\"#000000\">");
		new_window.document.write("<table><tr><td style=\"padding-right:20\"><img src=\"images/bio_jess.jpg\" /></td><td bgcolor=\"#ffffff\" width=\"100%\" valign=\"top\"><div id=\"bio\"><div align=\"center\"><strong>Jessica Savinelli Verrill</strong></div><br />Jessica is our head trainer - with 18 years experience in the horse business. In 2005 Jessica graduated from William Woods University, under the guidence of Gayle Lampe. Her summers were spent in Kentucky working for John and Renee Biggins and Bill and Nancy Becker.</div></td></tr></table></body></html>");

		// close the document
		new_window.document.close(); 
	}
	function open_josh_window() 
	{
		new_window = open("","hoverwindow","width=400,height=198,left=300,top=300");

		// open new document 
		new_window.document.open();

		// Text of the new document
		// Replace your " with ' or \" or your document.write statements will fail
		new_window.document.write("<html><title>Josh Verrill</title><head><link href=\"p7csslm/p7csslm07.css\" rel=\"stylesheet\" type=\"text/css\" /></head>");
		new_window.document.write("<body bgcolor=\"#000000\">");
		new_window.document.write("<table><tr><td style=\"padding-right:20\"><img src=\"images/bio_josh.jpg\" /></td><td bgcolor=\"#ffffff\" width=\"100%\" valign=\"top\"><div id=\"bio\"><div align=\"center\"><strong>Josh Verrill</strong></div><br />Josh is .....</div></td></tr></table></body></html>");

		// close the document
		new_window.document.close(); 
	}
	function open_dan_window() 
	{
		new_window = open("","hoverwindow","width=400,height=198,left=300,top=300");

		// open new document 
		new_window.document.open();

		// Text of the new document
		// Replace your " with ' or \" or your document.write statements will fail
		new_window.document.write("<html><title>Dan Verrill</title><head><link href=\"p7csslm/p7csslm07.css\" rel=\"stylesheet\" type=\"text/css\" /></head>");
		new_window.document.write("<body bgcolor=\"#000000\">");
		new_window.document.write("<table><tr><td style=\"padding-right:20\"><img src=\"images/bio_dan.jpg\" /></td><td bgcolor=\"#ffffff\" width=\"100%\" valign=\"top\"><div id=\"bio\"><div align=\"center\"><strong>Dan Verrill</strong></div><br />Dan is .....</div></td></tr></table></body></html>");

		// close the document
		new_window.document.close(); 
	}
	function open_pam_window() 
	{
		new_window = open("","hoverwindow","width=400,height=198,left=300,top=300");

		// open new document 
		new_window.document.open();

		// Text of the new document
		// Replace your " with ' or \" or your document.write statements will fail
		new_window.document.write("<html><title>Pam Verrill</title><head><link href=\"p7csslm/p7csslm07.css\" rel=\"stylesheet\" type=\"text/css\" /></head>");
		new_window.document.write("<body bgcolor=\"#000000\">");
		new_window.document.write("<table><tr><td style=\"padding-right:20\"><img src=\"images/bio_pam.jpg\" /></td><td bgcolor=\"#ffffff\" width=\"100%\" valign=\"top\"><div id=\"bio\"><div align=\"center\"><strong>Pam Verrill</strong></div><br />Pam is .....</div></td></tr></table></body></html>");

		// close the document
		new_window.document.close(); 
	}
	function open_emily_window() 
	{
		new_window = open("","hoverwindow","width=400,height=198,left=300,top=300");

		// open new document 
		new_window.document.open();

		// Text of the new document
		// Replace your " with ' or \" or your document.write statements will fail
		new_window.document.write("<html><title>Emily Papa</title><head><link href=\"p7csslm/p7csslm07.css\" rel=\"stylesheet\" type=\"text/css\" /></head>");
		new_window.document.write("<body bgcolor=\"#000000\">");
		new_window.document.write("<table><tr><td style=\"padding-right:20\"><img src=\"images/bio_emily.jpg\" /></td><td bgcolor=\"#ffffff\" width=\"100%\" valign=\"top\"><div id=\"bio\"><div align=\"center\"><strong>Emily Papa</strong></div><br />Emily is .....</div></td></tr></table></body></html>");

		// close the document
		new_window.document.close(); 
	}
	// This is the function that will close the
	// new window when the mouse is moved off the link
	function close_window() 
	{
		new_window.close();
	}