// JavaScript Document
images = new Array(2);
images[0] = "<a href='http://jakeandthefundamentals.com/' target='_blank'><img src='images/site_jakeandthefundamental.jpg' alt='Jake and the Fundamentals' width='183' height='123' class='paddedimage' /></a>";
images[1] = "<a href='http://sawthis.ca' target='_blank'><img src='images/site_century.jpg' alt='Saw This' width='183' height='123' class='paddedimage' /></a>";
//images[2] = "<img src='images/site_ajm.jpg' alt='AJ McBlain' width='183' height='123' class='paddedimage' />";

index = Math.floor(Math.random() * images.length);
document.write(images[index]);

