﻿function headerLinkOnMouseOver(color) {
	this.style.borderBottomColor='#009933'
	this.style.borderBottomWidth='4px';
	this.style.borderBottomStyle='solid';
	document.getElementById('header_filmstriptable').style.borderColor=color;
}
function headerLinkOnMouseOut(color) {
	this.style.borderBottomColor='#009933'
	this.style.borderBottomWidth='4px';
	this.style.borderBottomStyle='none';
	document.getElementById('header_filmstriptable').style.borderColor='#000099';
}