/*This file needs to be included at the begining of the html document. Preferably on the <head> section*/

/*=====================================================*/
/*Random images*/
/*=====================================================*/

/*Creates the link*/
function Link(href,image,alt) {
	this.href = href;
	this.image = image;
	this.alt = alt;
	return '<a href="'+this.href+'"><img src="'+this.image+'" class="img-no-border" alt="'+this.alt+'" /></a>';
}
/*populates links

*/
var imgs = new Array();
imgs[0]  = Link("http://www.overheardeverywhere.com","http://overheardin.com/images/oebanner.jpg","Overheard Everywhere");
imgs[1]  = Link("http://www.celebritywit.com","http://overheardin.com/images/cwbanner.jpg","Celebrity Wit");
imgs[2]  = Link("http://www.smugopedia.com","http://overheardin.com/images/smug.jpg","Smugopedia");

/*gets random image from imgs array.*/
function get_random(){
	var rnd= Math.floor(Math.random()*imgs.length);
	return rnd;
}

/*Returns the image*/
function printLink() {
	var i = get_random();
	document.write(imgs[i]);
};
/*=====================================================*/
