var banners = new Array(
'http://www.clubframeco.com/images/rotating_images/army_memorabilia.jpg',
'http://www.clubframeco.com/images/rotating_images/baby_photo.jpg',
'http://www.clubframeco.com/images/rotating_images/baby_pictures.jpg',
'http://www.clubframeco.com/images/rotating_images/black_and_white_photo.jpg',
'http://www.clubframeco.com/images/rotating_images/box_framing.jpg',
'http://www.clubframeco.com/images/rotating_images/canvas.jpg',
'http://www.clubframeco.com/images/rotating_images/creative_matcutting.jpg',
'http://www.clubframeco.com/images/rotating_images/creative_mats.jpg',
'http://www.clubframeco.com/images/rotating_images/cross_stitch_framing.jpg',
'http://www.clubframeco.com/images/rotating_images/fancy_matcutting.jpg',
'http://www.clubframeco.com/images/rotating_images/frame_jumper.jpg',
'http://www.clubframeco.com/images/rotating_images/golf_memorabilia.jpg',
'http://www.clubframeco.com/images/rotating_images/jigsaw.jpg',
'http://www.clubframeco.com/images/rotating_images/landscape_photo.jpg',
'http://www.clubframeco.com/images/rotating_images/matcutting.jpg',
'http://www.clubframeco.com/images/rotating_images/medal_framing.jpg','http://www.clubframeco.com/images/rotating_images/medals_memorabilia.jpg',
'http://www.clubframeco.com/images/rotating_images/music_memorabilia.jpg',
'http://www.clubframeco.com/images/rotating_images/music_memorabilia.jpg',
'http://www.clubframeco.com/images/rotating_images/needlework_framing.jpg',
'http://www.clubframeco.com/images/rotating_images/oil_painting.jpg',
'http://www.clubframeco.com/images/rotating_images/paper_tole.jpg',
'http://www.clubframeco.com/images/rotating_images/photo_collage.jpg',
'http://www.clubframeco.com/images/rotating_images/seascape_photo.jpg',
'http://www.clubframeco.com/images/rotating_images/sepia_photo.jpg',
'http://www.clubframeco.com/images/rotating_images/sports_memorabilia.jpg',
'http://www.clubframeco.com/images/rotating_images/tapestry_framing.jpg',
'http://www.clubframeco.com/images/rotating_images/wedding_photo.jpg');

var old = 0;
var current = 0;

function init()
{
    if (document.images.banner) {
    while (current == old)
    {
        current = Math.floor(Math.random()*banners.length);
    }
    old = current;
    document.images['banner'].src = banners[current];
    setTimeout('init()',8000);
	} else {
		return;
	}
}

