
<!--
if (document.images) {

	nav_story_off = new Image;
	nav_story_off.src = "images/nav_story.gif" ;
	nav_story_on = new Image;
	nav_story_on.src = "images/nav_story_on.gif" ;

	nav_cast_off = new Image;
	nav_cast_off.src = "images/nav_cast.gif" ;
	nav_cast_on = new Image;
	nav_cast_on.src = "images/nav_cast_on.gif" ;

	nav_filmmakers_off = new Image;
	nav_filmmakers_off.src = "images/nav_filmmakers.gif" ;
	nav_filmmakers_on = new Image;
	nav_filmmakers_on.src = "images/nav_filmmakers_on.gif" ;

	nav_trailer_off = new Image;
	nav_trailer_off.src = "images/nav_trailer.gif" ;
	nav_trailer_on = new Image;
	nav_trailer_on.src = "images/nav_trailer_on.gif" ;

	nav_photos_off = new Image;
	nav_photos_off.src = "images/nav_photos.gif" ;
	nav_photos_on = new Image;
	nav_photos_on.src = "images/nav_photos_on.gif" ;

	nav_message_off = new Image;
	nav_message_off.src = "images/nav_message.gif" ;
	nav_message_on = new Image;
	nav_message_on.src = "images/nav_message_on.gif" ;

	nav_downloads_off = new Image;
	nav_downloads_off.src = "images/nav_downloads.gif" ;
	nav_downloads_on = new Image;
	nav_downloads_on.src = "images/nav_downloads_on.gif" ;

	nav_flashsite_off = new Image;
	nav_flashsite_off.src = "images/nav_flashsite.gif" ;
	nav_flashsite_on = new Image;
	nav_flashsite_on.src = "images/nav_flashsite_on.gif" ;

	
}
var clicked, oldclicked 

function img_on(imgname){
        if (!document.images[imgname].clicked) {                
		    document[imgname].src = eval(imgname + "_on.src");
		}
}

function img_off(imgname){ 
        if (!document.images[imgname].clicked) { 
                document.images[imgname].src = eval(imgname + "_off.src"); 
        } 
} 


function img_stayon(imgname) { 
        document.images[imgname].clicked = true ; 
        document.images[imgname].src = eval(imgname + "_on.src"); 
        if (oldclicked != null) { 
			if (oldclicked != imgname) {
                document.images[oldclicked].src = eval(oldclicked + "_off.src");        
                document.images[oldclicked].clicked = false ; 
                oldclicked = imgname ;
			}
        } 
        else  oldclicked = imgname ;
} 



function popWin(url, name, width, height) {
	window.open(url, name, "width=" + width + ",height=" + height + ",dependent=1,directories=0,location=0,menubar=0,resizable=1,scrollbars=no,toolbar=0");
	
}
function launchFlash() {
	window.open("flash/index.html", "flash", "width=760,height=420,dependent=1,directories=0,location=0,menubar=0,resizable=0,scrollbars=no,toolbar=0");
	
}


// -->
