<script type="text/javascript">
<!--

//Below is the code that pre-loads the graphics
{

//These are the large images
alt0 = new Image();
alt0.src = "images/intro_banner.gif";

alt1 = new Image();
alt1.src = "images/profile_banner.gif";

alt2 = new Image();
alt2.src = "images/register-1-out.jpg";

alt3 = new Image();
alt3.src = "images/attend-2-over.jpg";

alt4 = new Image();
alt4.src = "images/reveiew-3-over.jpg";

//These are the second button graphics

graphic2= new Image();
graphic2.src = "images/register-1-out.jpg";
graphic2on = new Image();
graphic2on.src = "images/register-1-over.jpg";

//These are the third button graphics

graphic3= new Image();
graphic3.src = "images/attend-2-out.jpg";
graphic3on = new Image();
graphic3on.src = "images/attend-2-over.jpg";

//These are the fourth button graphics

graphic4= new Image();
graphic4.src = "images/reveiew-3-out.jpg";
graphic4on = new Image();
graphic4on.src = "images/reveiew-3-over.jpg";

//This is the function that calls for
//the change in the buttons

}
function imageChange(imageID,imageName,imageID2,imageName2) {

{
document.images[imageID].src = eval(imageName + ".src");
document.images[imageID2].src = eval(imageName2 + ".src");
}

}
// -->
</script>