
//  The first 7 images (0-4) will be forced into the first 5 spots,
//    ! edit: 20080930 the first 6 images (0-5) will be forced
//  after that the rest will fight for the remaining spots
//  http://www.raru.com/pglist/random.js
//  http://www.raru.com/pglist/random.jpg

var theImages = new Array()

theImages[0]='<a href="http://www.custom-celtic.com/custom-celtic.htm"><img border="0" src="http://www.raru.com/images/celticcollection-sm.jpg" alt="deSignet \'s Custom Celtic Collection"><br><font face="Verdana" size="1">Visit our Custom Celtic Collection</a>'

theImages[1]='<a href="http://www.raru.com/signet/signet.htm"><img border="0" src="http://www.raru.com/images/frontpage/signet-ring-banner2.jpg" alt="Custom Signet Ring Jewelry Page"><br><font face="Verdana" size="1">Visit our Custom Signet Ring Jewelry Page</a>'

theImages[2]='<a href="http://www.custom-fleur-de-lis.com/" target="_top"><img border="0" src="http://www.raru.com/images/frontpage/fleurdelis.jpg" alt="Fleur de Lis Jewelry"></a>'

theImages[3]='<a href="http://www.raru.com/reversecradle/reverse.htm"><img border="0" src="http://www.raru.com/images/frontpage/reversecradlenew2.jpg" alt="Reverse Cradle Jewelry Collection"></a>'

theImages[4]='<a href="http://www.custom-engagement-rings.com/diamond-bands.htm"><img border="0" src="http://www.raru.com/images/frontpage/dia-banner.jpg" alt="Diamond Eternity Bands"></a>'

theImages[5]='<a href="http://www.custom-wedding-rings.com/initial-rings.htm"><img border="0" src="http://www.raru.com/images/frontpage/sterling-bands-special.jpg" alt="Sterling Silver bands"></a>'

theImages[6]='<a href="http://www.custom-corporate-gifts.com/index-old.html"><img border="0" src="http://www.raru.com/images/corporatebanner.jpg" alt="Custom Corporate Jewelry"></a>'

theImages[7]='<a href="http://www.raru.com/monogram/monogram.htm"><img border="0" src="http://www.raru.com/images/monograms.jpg" alt="Custom Monogram Collection"><br><font face="Verdana" size="1">Visit our Custom Monogram Jewelry Page</a>'

theImages[8]='<a href="http://www.raru.com/gift_cert/gift_cert.html"><img border="0" src="http://www.raru.com/gift_cert/fp_banner2-sm.jpg" alt="deSignet Gift Certificates">'

theImages[9]='<a href="http://www.raru.com/military/military.htm"><img border="0" src="http://www.raru.com/images/military/banner.jpg" alt="Custom Military Jewelry"></a>'

theImages[10]='<a href="http://www.customceltic.com/cladbands.htm"><img border="0" src="http://www.raru.com/images/frontpage/personalized-claddagh.jpg" alt="Custom Claddagh Jewelry"></a>'

theImages[11]='<a href="http://www.raru.com/wedding/wedding.htm"><img border="0" src="http://www.raru.com/images/frontpage/personalized-wedding-bands.jpg" alt="Personalize your Wedding Band"></a>'

theImages[12]='<a href="http://www.custom-mothers-jewelry.com/mom-rings.htm"><img border="0" src="http://www.raru.com/images/frontpage/mothersday.jpg" alt="Mother\'s Jewelry"></a>'

theImages[13]='<a href="http://www.raru.com/buffalo/buffalo.htm"><img border="0" src="http://www.raru.com/images/buffaloproduct/frontpagebanner.jpg" alt="Buffalo Collection"></a>'

theImages[14]='<a href="http://www.raru.com/valentine/valentine.htm"><img border="0" src="http://www.raru.com/images/heartcollection.jpg" alt="Heart Collection"></a>'

theImages[15]='<a href="http://www.raru.com/gemstonerings.htm"><img border="0" src="http://www.raru.com/images/gemstones/gemstonebanner100407.jpg" alt="Gemstone Jewelry Collection"></a>'

theImages[16]='<a href="http://www.custom-wedding-rings.com/southwestern.html"><img border="0" src="http://www.custom-wedding-rings.com/images/southwestern-banner-sm.jpg" alt="Southwestern Jewelry Page"></a>'

theImages[17]='<a href="http://www.raru.com/masonic/masonic.htm"><img border="0" src="http://www.raru.com/images/frontpage/masonic.jpg" alt="Masonic Jewelry Page"></a>'

theImages[18]='<a href="http://www.raru.com/celtic/celtic.htm"><img border="0" src="http://www.raru.com/celtic/celtic-banner.jpg" alt="Masonic Jewelry Page"></a>'

theImages[19]='<a href="http://www.custom-engravable-jewelry.com/index.html"><img border="0" src="http://www.raru.com/images/frontpage/banner-thumb.jpg" alt="Engravable Jewelry"></a>'

theImages[20]='<a href="http://www.custom-monograms.com/mono-familycrest.htm"><img border="0" src="http://www.raru.com/images/frontpage/familycrest.jpg" alt="Family Crest Jewelry"></a>'



var p = theImages.length;

var whichImage1 = Math.round(Math.random()*(6-1));
function showImage1()
{
	document.write(theImages[whichImage1]);
}

var whichImage2 = Math.round(Math.random()*(6-1));
function showImage2()
{
	while ((whichImage2 == whichImage1) || (whichImage2 == whichImage3) || (whichImage2 == whichImage4) || (whichImage2 == whichImage5) || (whichImage2 == whichImage6))
	{
		whichImage2 = Math.round(Math.random()*(6-1));
	}

	document.write(theImages[whichImage2]);
}


var whichImage3 = Math.round(Math.random()*(6-1));
function showImage3()
{
	while ((whichImage3 == whichImage1) || (whichImage3 == whichImage2) || (whichImage3 == whichImage4) || (whichImage3 == whichImage5) || (whichImage3 == whichImage6))
	{
		whichImage3 = Math.round(Math.random()*(6-1));
	}

	document.write(theImages[whichImage3]);
}

var whichImage4 = Math.round(Math.random()*(6-1));
function showImage4()
{
	while ((whichImage4 == whichImage1) || (whichImage4 == whichImage2) || (whichImage4 == whichImage3) || (whichImage4 == whichImage5) || (whichImage4 == whichImage6))
	{
		whichImage4 = Math.round(Math.random()*(6-1));
	}

	document.write(theImages[whichImage4]);
}

var whichImage5 = Math.round(Math.random()*(6-1));
function showImage5()
{
	while ((whichImage5 == whichImage1) || (whichImage5 == whichImage2) || (whichImage5 == whichImage3) || (whichImage5 == whichImage4) || (whichImage5 == whichImage6))
	{
		whichImage5 = Math.round(Math.random()*(6-1));
	}
	
	document.write(theImages[whichImage5])
}

var whichImage6 = Math.round(Math.random()*(6-1));
function showImage6()
{
	while ((whichImage6 == whichImage1) || (whichImage6 == whichImage2) || (whichImage6 == whichImage3) || (whichImage6 == whichImage4) || (whichImage6 == whichImage5))
	{
		whichImage6 = Math.round(Math.random()*(6-1));
	}
	
	document.write(theImages[whichImage6])
}

var whichImage7 = Math.round(Math.random()*(p-1));
function showImage7()
{
	while ((whichImage7 == whichImage1) || (whichImage7 == whichImage2) || (whichImage7 == whichImage3) || (whichImage7 == whichImage4) || (whichImage7 == whichImage5) || (whichImage7 == whichImage6) || (whichImage7 == whichImage8) || (whichImage7 == whichImage9) || (whichImage7 == whichImage10) || (whichImage7 == whichImage11))
	{
		whichImage7 = Math.round(Math.random()*(p-1));
	}
	
	document.write(theImages[whichImage7])
}

var whichImage8 = Math.round(Math.random()*(p-1));
function showImage8()
{
	while ((whichImage8 == whichImage1) || (whichImage8 == whichImage2) || (whichImage8 == whichImage3) || (whichImage8 == whichImage4) || (whichImage8 == whichImage5) || (whichImage8 == whichImage6) || (whichImage8 == whichImage7) || (whichImage8 == whichImage9) || (whichImage8 == whichImage10) || (whichImage8 == whichImage11))
	{
		whichImage8 = Math.round(Math.random()*(p-1));
	}
	
	document.write(theImages[whichImage8])
}

var whichImage9 = Math.round(Math.random()*(p-1));
function showImage9()
{
	while ((whichImage9 == whichImage1) || (whichImage9 == whichImage2) || (whichImage9 == whichImage3) || (whichImage9 == whichImage4) || (whichImage9 == whichImage5) || (whichImage9 == whichImage6) || (whichImage9 == whichImage7) || (whichImage9 == whichImage8) || (whichImage9 == whichImage10) || (whichImage9 == whichImage11))
	{
		whichImage9 = Math.round(Math.random()*(p-1));
	}
	
	document.write(theImages[whichImage9])
}


var whichImage10 = Math.round(Math.random()*(p-1));
function showImage10()
{
	while ((whichImage10 == whichImage1) || (whichImage10 == whichImage2) || (whichImage10 == whichImage3) || (whichImage10 == whichImage4) || (whichImage10 == whichImage5) || (whichImage10 == whichImage6) || (whichImage10 == whichImage7) || (whichImage10 == whichImage8) || (whichImage10 == whichImage9) || (whichImage10 == whichImage11))
	{
		whichImage10 = Math.round(Math.random()*(p-1));
	}
	
	document.write(theImages[whichImage10])
}


var whichImage11 = Math.round(Math.random()*(p-1));
function showImage11()
{
	while ((whichImage11 == whichImage1) || (whichImage11 == whichImage2) || (whichImage11 == whichImage3) || (whichImage11 == whichImage4) || (whichImage11 == whichImage5) || (whichImage11 == whichImage6) || (whichImage11 == whichImage7) || (whichImage11 == whichImage8) || (whichImage11 == whichImage9) || (whichImage11 == whichImage10))
	{
		whichImage11 = Math.round(Math.random()*(p-1));
	}
	
	document.write(theImages[whichImage11])
}