﻿// JScript File

function LoadEvent()
 {
var today = new Date()
var hours = today.getHours()
document.getElementById('ban1').src = 'http://www.virtual-spy-shop.co.uk/images/header-image01d.jpg'
document.getElementById('ban2').src = 'http://www.virtual-spy-shop.co.uk/images/header-image02d.jpg'
document.getElementById('ban3').src = 'http://www.virtual-spy-shop.co.uk/images/header-image03d.jpg'
if (hours < 6) {
document.getElementById('ban1').src = 'http://www.virtual-spy-shop.co.uk/images/header-image01.jpg'
document.getElementById('ban2').src = 'http://www.virtual-spy-shop.co.uk/images/header-image02.jpg'
document.getElementById('ban3').src = 'http://www.virtual-spy-shop.co.uk/images/header-image03.jpg'
}
if (hours > 18) {
document.getElementById('ban1').src = 'http://www.virtual-spy-shop.co.uk/images/header-image01.jpg'
document.getElementById('ban2').src = 'http://www.virtual-spy-shop.co.uk/images/header-image02.jpg'
document.getElementById('ban3').src = 'http://www.virtual-spy-shop.co.uk/images/header-image03.jpg'
}
}