// JavaScript Document
function brilliant_banner_ad(){
var img_width = "728";
var img_height = "90";
var img_title = "Click Here";

var ad=new Array()
//insert here your images src
ad[0]='http://003feca.netsolhost.com/site/media/Ad_Images/Aprons_Uncommon_Threads_728x90_home_banner.jpg';
ad[1]='http://003feca.netsolhost.com/site/media/Ad_Images/BR_728x90_home_banner.jpg';
ad[2]='http://003feca.netsolhost.com/site/media/Ad_Images/groline_728x90_home_banner.jpg';
ad[3]='http://003feca.netsolhost.com/site/media/Ad_Images/warwick_728x90_home_banner.jpg';
ad[4]='http://003feca.netsolhost.com/site/media/Ad_Images/Postit_NewIdeas_2010_Banner.jpg';

var links=new Array()
//insert here your links
links[0]='http://www.apronsetc.com';
links[1]='index.html';
links[2]='http://www.thegroline.com';
links[3]='http://www.warwickpublishing.com';
links[4]='http://promote.3m.com/new_ideas_2010.jsp  ';

var xy=Math.floor(Math.random()*ad.length);
document.write('<a href="'+links[xy]+'" target="_blank"><img src="'+ad[xy]+'" width="'+img_width+'" border="0" height="'+img_height+'" alt="'+img_title+'"></a>');
}