//Randomising the ads
//Javascript Created by Computerhope http://www.computerhope.com

function scpdad(){
//building the link
scpdad = new Array();

scpdad[0] = '<a href="http://education.qld.gov.au/smartclassrooms/pdframework/resources/pedagogy.html" target="_blank"><img src="img/ad/advlice.jpg" alt="Advertisement: Digital Pedagogy" /></a>';
scpdad[1] = '<a href="http://education.qld.gov.au/smartclassrooms/pdframework/resources/atomic.html" target="_blank"><img src="img/ad/askal.jpg" alt="Advertisement: Ask AL" /></a>';
scpdad[2] = '<a href="http://education.qld.gov.au/smartclassrooms/pdframework/resources/in-practice.html" target="_blank"><img src="img/ad/see.jpg" alt="Advertisement: See Digital Pegagogy in Practice" /></a>';
index = Math.floor(Math.random() * scpdad.length);
document.write(scpdad[index]);
//done
}