<!--

//PRELOAD
var obj = null;
var thePics = new Array();

thePics = new Array("nav_philosophy","nav_company","nav_staff","nav_contact","nav_portfolio");


function swap(name,state) {
    if(thePics[name+state] && thePics[name+state].complete) {
        document.images[name].src = thePics[name+state].src;
    }
}

function preloadPics(thePics) {
	for (i=0;i<thePics.length;i++){
		thePics[thePics[i]] = new Image();
		thePics[thePics[i]].src = 'images/'+thePics[i]+'.gif';
		thePics[thePics[i]+'_over'] = new Image();
		thePics[thePics[i]+'_over'].src = 'images/'+thePics[i]+'_over.gif';
	}
}

preloadPics(thePics);

function staffPop(numStaffMem) {
	var dx=530;
	var dy=600;

	var w = window.open('staffPop.html?'+numStaffMem, 'popup', 'width=' + dx + ',height=' + dy + ',status=no,resizable=no,menubar=no,location=no,scrollbars=yes,toolbar=no,screenX=10,screenY=10,left=10,top=10');
	var staffMem = numStaffMem
	w.focus();
}

function portPop(location) {
	var dx=500;
	var dy=600;

	var w = window.open('portPop.html?house='+location, 'portpopup', 'width=' + dx + ',height=' + dy + ',status=no,resizable=no,menubar=no,location=no,scrollbars=yes,toolbar=no,screenX=10,screenY=10,left=10,top=10');
	w.focus();
}


function ShowSlideShow(URL) {
    slideshow_window = window.open(URL, 'slideshow_window', 'width=510, height=550, left=50, top=20');
    
    slideshow_window.focus();
    
    return false;
}
//-->

