// JavaScript Document

var theImages = new Array() ;
var d = new Date();

if (d.getMonth() < 4) /* Jan, Feb, March */
{
    theImages[0] = '/telecommunications/Banners/PUD3_telecom_banner1.jpg'
    theImages[1] = '/telecommunications/Banners/PUD3_telecom_banner2.jpg'
    theImages[2] = '/telecommunications/Banners/PUD3_telecom_banner4.jpg'
    theImages[3] = '/telecommunications/Banners/PUD3_telecom_banner7.jpg'
    theImages[4] = '/telecommunications/Banners/PUD3_telecom_banner9.jpg'
    theImages[5] = '/telecommunications/Banners/PUD3_telecom_banner11.jpg'
    theImages[6] = '/telecommunications/Banners/PUD3_telecom_banner12.jpg'
}
else if (d.getMonth() < 7) /* April, May, June */
{
    theImages[0] = '/telecommunications/Banners/PUD3_telecom_banner1.jpg'
    theImages[1] = '/telecommunications/Banners/PUD3_telecom_banner5.jpg'
    theImages[2] = '/telecommunications/Banners/PUD3_telecom_banner6.jpg'
    theImages[3] = '/telecommunications/Banners/PUD3_telecom_banner7.jpg'
    theImages[4] = '/telecommunications/Banners/PUD3_telecom_banner9.jpg'
    theImages[5] = '/telecommunications/Banners/PUD3_telecom_banner10.jpg'
    theImages[6] = '/telecommunications/Banners/PUD3_telecom_banner11.jpg'
}
else if (d.getMonth() < 10) /* July, August, Sept */
{
    theImages[0] = '/telecommunications/Banners/PUD3_telecom_banner2.jpg'
    theImages[1] = '/telecommunications/Banners/PUD3_telecom_banner3.jpg'
    theImages[2] = '/telecommunications/Banners/PUD3_telecom_banner5.jpg'
    theImages[3] = '/telecommunications/Banners/PUD3_telecom_banner6.jpg'
    theImages[4] = '/telecommunications/Banners/PUD3_telecom_banner8.jpg'
    theImages[5] = '/telecommunications/Banners/PUD3_telecom_banner10.jpg'
    theImages[6] = '/telecommunications/Banners/PUD3_telecom_banner13.jpg'
}
else /* Oct, Nov, Dec */
{
    theImages[0] = '/telecommunications/Banners/PUD3_telecom_banner4.jpg'
    theImages[1] = '/telecommunications/Banners/PUD3_telecom_banner5.jpg'
    theImages[2] = '/telecommunications/Banners/PUD3_telecom_banner7.jpg'
    theImages[3] = '/telecommunications/Banners/PUD3_telecom_banner8.jpg'
    theImages[4] = '/telecommunications/Banners/PUD3_telecom_banner9.jpg'
    theImages[5] = '/telecommunications/Banners/PUD3_telecom_banner10.jpg'
    theImages[6] = '/telecommunications/Banners/PUD3_telecom_banner12.jpg'
}

var j = 0
var p = theImages.length;
var preBuffer = new Array()
for (i = 0; i < p; i++)
{
	 preBuffer[i] = new Image()
	 preBuffer[i].src = theImages[i]
}
var whichImage = Math.round(Math.random()*(p-1));
function showImage()
{
    document.write('<img src="'+theImages[whichImage]+'">');
}
	
showImage();