
function regEvent(strEvent){
		document.forms[0].eventName.value = strEvent;
		document.forms[0].submit();
	}

function hoverOver (imgId,imgSrc,relativeImg)
{
	var img = document.getElementById(imgId);
	
	if ( img != null )
	{
		img.src = "Images/" + imgSrc;    
    }
    
    document.roll.src=relativeImg.src ;
}

function hoverOut (imgId,imgSrc)
{	
	var img = document.getElementById(imgId);
	
    if ( img != null )
	{
		img.src = "Images/" + imgSrc;    
    }
    
    document.roll.src=img0.src ;
} 