<!--
if(document.images){
				
			/* home images */
			homeoff=new Image (100,40); homeon=new Image (100,40);
			homeoff.src="images/home.jpg"; homeon.src="images/homeon.jpg";
			
			/* story images */
			storyoff=new Image (100,40); storyon=new Image (100,40);
			storyoff.src="images/story.jpg"; storyon.src="images/storyon.jpg";
		
			/* cast/crew images */
			castcrewoff=new Image (100,40); castcrewon=new Image (100,40);
			castcrewoff.src="images/castcrew.jpg"; castcrewon.src="images/castcrewon.jpg";
				
			/* reviews images */
			reviewsoff=new Image (100,40); reviewson=new Image (100,40);
			reviewsoff.src="images/reviews.jpg"; reviewson.src="images/reviewson.jpg";
			
			/* photos images */
			photosoff=new Image (100,40); photoson=new Image (100,40);
			photosoff.src="images/photos.jpg"; photoson.src="images/photoson.jpg";
			
			/* shop images */
			shopoff=new Image (100,40); shopon=new Image (100,40); shopclick=new Image (100,40);
			shopoff.src="images/shop.jpg"; shopon.src="images/shopon.jpg"; shopclick.src="images/shopclick.jpg"
									
			function rollover(imgID){
			// do the rollover
			document.images[imgID].src=eval(imgID+"on.src");
			}
			
			function rolloff(imgID){
			// change me back
			document.images[imgID].src=eval(imgID+"off.src");
			}

			function click(imgID){
			// change me back
			document.images[imgID].src=eval(imgID+"click.src");
			}
			
			function formwindow(){
			// open the window
			var thewindow
			// open window with height 400, width 350
			thewindow = window.open("form/form.html","","HEIGHT=400,WIDTH=350")}
			
			function validateform(form){
				// if the value is blank
			     if (form.name.value == "") {
			     	// alert the user
    				alert( "You forgot to enter your name." );
    				// focus the cursor in the text field
    				form.name.focus();
    				// return false
    				return false ;
  				}
  			}

}

/* Internet Explorer! */
if (document.all) {
   if ((navigator.appVersion.indexOf("Mac") != -1))
   {
   	document.write('<link rel=stylesheet type="text/css" href="donnie_mac_ie.css">'); 
}
else
{
   document.write('<link rel=stylesheet type="text/css" href="donnie.css">'); 
}

  
/* New Netscape! */
}else if(document.getElementById){
   document.write('<link rel=stylesheet type="text/css" href="donnie.css">');
   
/* Old Netscape - Redirect 'em */
} else if (document.layers){
	alert('Please download a new browser!');
   location="http://www.mozilla.org";
}

/*
Shake image script (onMouseover)- 
© Dynamic Drive (www.dynamicdrive.com)
For full source code, usage terms, and 100's more DHTML scripts, visit http://dynamicdrive.com
*/

//configure shake degree (where larger # equals greater shake)
var rector=3

///////DONE EDITTING///////////
var stopit=0 
var a=1

// this function initializes variables
function init(which){
stopit=0
shake=which
shake.style.left=0
shake.style.top=0
}

// this function rattles the image
function rattleimage(){
if ((!document.all&&!document.getElementById)||stopit==1)
return
if (a==1){
shake.style.top=parseInt(shake.style.top)+rector
}
else if (a==2){
shake.style.left=parseInt(shake.style.left)+rector
}
else if (a==3){
shake.style.top=parseInt(shake.style.top)-rector
}
else{
shake.style.left=parseInt(shake.style.left)-rector
}
if (a<4)
a++
else
a=1
setTimeout("rattleimage()",50)
}

// this function stops the rattling
function stoprattle(which){
stopit=1
which.style.left=0
which.style.top=0
}
// -->