<!-- Begin
var changed = 0;

function flashLights() {
	setTimeout("animationStep1()", 2000);
}
function animationStep1() {
	if (changed == 0) {
	changeImages('leftlight', 'images/Left-Lights-1.jpg');
	setTimeout("animationStep2()", 225);
} }
function animationStep2() {
	if (changed == 0) {
	changeImages('leftlight', 'images/Left-Lights-12.jpg');
	setTimeout("animationStep3()", 225);
} }
function animationStep3() {
	if (changed == 0) {
	changeImages('leftlight', 'images/Left-Lights-123.jpg');
	setTimeout("animationStep4()", 225);
} }
function animationStep4() {
	if (changed == 0) {
	changeImages('rightlight', 'images/Right-Lights-1.jpg');
	setTimeout("animationStep5()", 225);
} }
function animationStep5() {
	if (changed == 0) {
	changeImages('rightlight', 'images/Right-Lights-12.jpg');
	setTimeout("animationStep6()", 225);
} }
function animationStep6() {
	if (changed == 0) {
	changeImages('rightlight', 'images/Right-Lights-123.jpg');
	setTimeout("animationStep7()", 2000);
} }
function animationStep7() {
	if (changed == 0) {
	changeImages('leftlight', 'images/Left-Lights-23.jpg');
	setTimeout("animationStep8()", 225);
} }
function animationStep8() {
	if (changed == 0) {
	changeImages('leftlight', 'images/Left-Lights-3.jpg');
	setTimeout("animationStep9()", 225);
} }
function animationStep9() {
	if (changed == 0) {
	changeImages('leftlight', 'images/Left-Lights-0.jpg');
	setTimeout("animationStep10()", 225);
} }
function animationStep10() {
	if (changed == 0) {
	changeImages('rightlight', 'images/Right-Lights-23.jpg');
	setTimeout("animationStep11()", 225);
} }
function animationStep11() {
	if (changed == 0) {
	changeImages('rightlight', 'images/Right-Lights-3.jpg');
	setTimeout("animationStep12()", 225);
} }
function animationStep12() {
	if (changed == 0) {
	changeImages('rightlight', 'images/Right-Lights-0.jpg');
} }
function stopLeftAnimation()
{
	changed = 1;
	changeImages('leftlight', 'images/Left-Lights-0.jpg');
}
function stopRightAnimation()
{
	changed = 1;
	changeImages('rightlight', 'images/Right-Lights-0.jpg');
}
// End -->