function advertise()
{			
	var img = new Array();
	img[0] = '<a href="http://www.joycemeyer.org" target="_BLANK"><img src="images/ads/joyce_meyerad.jpg" alt="Joyce Meyers" border="0"/></a>';
	img[1] = '<a href="http://www.diecut.com" target="_BLANK"><img src="images/ads/diecut.jpg" alt="Die Cut" border="0"/></a>';
	img[2] = '<a href="http://www.blueteksolutions.com" target="_BLANK"><img src="images/ads/bluetek2.jpg" alt="Blue Tek" border="0"/></a>';
        img[3] = '<a href="http://www.sweetpeacecakes.com/" target=_BLANK"><img src="images/ads/Sweet-Peace-Cakes-140x250.jpg" alt="Sweet Peace Cakes" border="0" /></a>';
	img[4] = '<a href="http://www.blueteksolutions.com/" target=_BLANK"><img src="images/ads/Web-Site-Ad-140x250.jpg" alt="BlueTek Solutions" border="0" /></a>';
        img[5] = '<a href="http://www.stjude.org" target="_BLANK"><img src="images/ads/saint_judes.jpg" alt="Saint Judes" border="0" /></a>';
	img[6] = '<a href="http://www.higginscomputer.com" target="_BLANK"><img src="images/ads/higgins_computer.jpg" alt="Higgins Computer" border="0" /></a>';
        var random = Math.ceil(Math.random() * img.length-1);

	document.getElementById("img_ad").innerHTML = img[random];




}



if (window.addEventListener) window.addEventListener("load", init, false);
    else if (window.attachEvent) window.attachEvent("onload", init);


    function init() { 
 
	advertise();

	
    }