function rand_number(n)
{
var x;
x=Math.round(Math.random()*100);
x%=n;
return x;
}
function pics()
{
var ad = new Array();

ad[0]='<div><h4><a href="services.php#two">website hosting</a> </h4><p><img src="/images/pics/icon-globe.gif" alt="website hosting" width="59" height="50" align="left" />When looking for a website hosting provider be sure to find out <a href="services.php#two">...</a></p></div>';

ad[1]='<div><h4><a href="http://www.m2news.com.au">m2 news</a></h4><p><img src="/images/pics/icon-news.jpg" alt="m2 news" width="60" height="60" align="left" />Our online newsletter management and direct marketing software <a href="http://www.m2news.com.au">...</a></p></div>';

ad[2]='<div><h4><a href="services.php#one">website design</a></h4><p><img src="/images/pics/icon-hand.gif" alt="website design" width="46" height="43" align="left" />Simple business presence to complex interactive sites, design is the <a href="services.php#one">...</a></p></div>';

ad[3]='<div><h4><a href="services.php#one">website design</a></h4><p><img src="/images/pics/icon-hand.gif" alt="website design" width="46" height="43" align="left" />Simple business presence to complex interactive sites, design is the <a href="services.php#one">...</a></p></div>';

ad[4]='<div><h4><a href="http://www.m2news.com.au">m2 news</a></h4><p><img src="/images/pics/icon-news.jpg" alt="m2 news" width="60" height="60" align="left" />Our online newsletter management and direct marketing software <a href="http://www.m2news.com.au">...</a></p></div>';

ad[5]='<div><h4><a href="products.php#one">m2 cms</a></h4><p><img src="/images/pics/icon-cms.jpg" alt="m2 cms" width="60" height="60" align="left" />Start editing your own web site content today with our easy to use CMS <a href="products.php#one">...</a></p></div>';

ad[6]='<div><h4><a href="products.php#three">m2 shop</a></h4><p><img src="/images/pics/icon-shop.jpg" alt="m2 shop" width="60" height="60" align="left" />Our simple online shop means you can start selling online today with your <a href="products.php#three">...</a></p></div>';

ad[7]='<div><h4><a href="http://www.m2news.com.au">m2 news</a></h4><p><img src="/images/pics/icon-news.jpg" alt="m2 news" width="60" height="60" align="left" />Our online newsletter management and direct marketing software <a href="http://www.m2news.com.au">...</a></p></div>';

var n=rand_number(8); 
document.write(ad[n]);
}

