
// <!-- 

{

// this is main navigation on home page
button1 = new Image;
button1.src = "center/images/nav/welcome.gif";

button2 = new Image;
button2.src = "center/images/nav/projects.gif";

button3 = new Image;
button3.src = "center/images/nav/issues.gif";

button4 = new Image;
button4.src = "center/images/nav/users.gif";

button5 = new Image;
button5.src = "center/images/nav/timesheets.gif";

button6 = new Image;
button6.src = "center/images/nav/reports.gif";

button7 = new Image;
button7.src = "center/images/nav/admin.gif";

button8 = new Image;
button8.src = "center/images/nav/faqs.gif";

button9 = new Image;
button9.src = "center/images/nav/pm_tips.gif";
// end of main navigation on home page



// this is main navigation rollover
button1on = new Image;
button1on.src = "center/images/nav/welcome_roll.gif";

button2on = new Image;
button2on.src = "center/images/nav/projects_roll.gif";

button3on = new Image;
button3on.src = "center/images/nav/issues_roll.gif";

button4on = new Image;
button4on.src = "center/images/nav/users_roll.gif";

button5on = new Image;
button5on.src = "center/images/nav/timesheets_roll.gif";

button6on = new Image;
button6on.src = "center/images/nav/reports_roll.gif";

button7on = new Image;
button7on.src = "center/images/nav/admin_roll.gif";

button8on = new Image;
button8on.src = "center/images/nav/faqs_roll.gif";

button9on = new Image;
button9on.src = "center/images/nav/pm_tips_roll.gif";
// end of main navigation rollover



}
function imageChange(imageID,imageName,imageID2,imageName2) { 

{
document.images[imageID].src = eval(imageName + ".src");
}

}

// popup new window

function openit(sURL,w,h,name){
var sNewURL;
sNewURL = sURL;
newwindow=open(sNewURL,name,"scrollbars=yes,toolbar=no,directories=no,menubar=no,resizable=no,status=yes,width=" + w + ",height=" + h);
newwindow.focus();
}

// -->
