// Rollovers for menu
	if (document.images) {
	
//Menu Buttons
		homeOff = new Image
        newsOff = new Image
        forumsOff = new Image
        screenshotsOff = new Image
        infoOff = new Image
        lucindaOff = new Image
        linksOff = new Image
        buyOff = new Image
        
        homeOff.src = "images/btns/home.gif"
        newsOff.src = "images/btns/news.gif"
        forumsOff.src = "images/btns/forums.gif"
        screenshotsOff.src = "images/btns/screenshots.gif"
        infoOff.src = "images/btns/info.gif"
        lucindaOff.src = "images/btns/lucinda.gif"
        linksOff.src = "images/btns/links.gif"
         buyOff.src = "images/btns/buy.gif"
        

//Menu RolloverButtons 
		homeRoll = new Image
		newsRoll = new Image
        forumsRoll = new Image
        screenshotsRoll= new Image
        infoRoll= new Image
        lucindaRoll= new Image
        linksRoll= new Image
        buyRoll= new Image
		
		homeRoll.src = "images/btns/home_ro.gif"
        newsRoll.src = "images/btns/news_ro.gif"
        forumsRoll.src = "images/btns/forums_ro.gif"
        screenshotsRoll.src = "images/btns/screenshots_ro.gif"
        infoRoll.src = "images/btns/info_ro.gif"
        lucindaRoll.src = "images/btns/lucinda_ro.gif"
        linksRoll.src = "images/btns/links_ro.gif"
       buyRoll.src = "images/btns/buy_ro.gif"


	}
	
	function chgImg(imgField,newImg) {
		if (document.images) {
			document[imgField].src= eval(newImg + ".src")
		}
	}
    


//OPEN SCREENSHOTS
function NewWin(theurl)
{
 // set the width and height
 var the_width=550;
 var the_height=405;
 // set window position
 var winl = (screen.width - 549) / 2;
 var wint = (screen.height - 404) /2;
 // 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='no';
 var is_resizable='no';
 
 // attributes
 var the_atts='width='+the_width+',height='+the_height+',top='+winl+',screenY='+winl+',left='+wint+',screenX='+wint;
 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);
}
