var Slugs = {
  slugs : [
          "<div class=adBox><a href=http://www.trainone.com/ target=_blank><img src=/slugs/train-one.jpg width=162 height=240></a></div>"
		, "<div class=adBox><a href=/C-Level-Secrets-Selling-at-the-Highest-Level-pluCLS-SHL.html><img src=/slugs/C-Level-Slug.jpg width=162 height=361></a></div>"
		, "<div class=adBox><a href=/Little-Gold-Book-of-Yes-Attitude-pluLGBYA.html><img src=/slugs/Gold-Book-Slug.jpg width=162 height=300></a></div>"
		, "<div class=adBox><a href=/salesHelp/SalesForum.html><img src=/slugs/Sales-Forum-Slug-2.jpg width=162 height=252></a></div>"
		, "<div class=adBox><a href=/sales-magazine/Sales-Caffeine.html><img src=/slugs/sales-caffeine.jpg width=162 height=300></a></div>"
		, "<div class=adBox><a href=/Little-Gold-Book-of-Yes-Attitude-pluLGBYA.html ><img src=/slugs/Little-Gold-Book-Slug.jpg width=162 height=297></a></div>"
		, "<div class=adBox><a href=/Trash-Talk-Trash-Can-pluJG-TTTC.html><img src=/slugs/Trash-Can-Slug.jpg width=162 height=300></a></div>"
		, "<div class=adBox><a href=/Little-Gold-Book-of-YES-Attitude-Altoids-pluJG-LGBYAA.html><img src=/slugs/YES-mints.jpg width=162 height=240></a></div>"
		, "<div class=adBox><a href=/salesHelp/Ask-Jeffrey-Gitomer.html ><img src=/slugs/Jeffrey-Question-2.jpg width=162 height=257></a></div>"
		, "<div class=adBox><a href=/Little-Red-Book-of-Selling-pluLRB.html><img src=/slugs/Red-Book-slug-4.jpg width=162 height=300></a></div>"
		, "<div class=adBox><a href=/products/Books.html><img src=/slugs/Little-Book-Slug.jpg width=162 height=300></a></div>"
		, "<div class=adBox><a href=/Little-Black-Book-of-Connections-pluLBBC.html ><img src=/slugs/Little-Black-Book-slug.jpg width=162 height=300></a></div>"
		, "<div class=adBox><a href=/articles/ThisWeeksColumn.html><img src=/slugs/Weekly-column-slug.jpg width=162 height=228></a></div>"
		, "<div class=adBox><a href=/Little-Red-Book-of-Selling-Altoids-pluJG-LRBSA.html><img src=/slugs/Red-Mints-Slug.jpg width=162 height=222></a></div>"
		, "<div class=adBox><a href=/seminars/Seminars.html><img src=/slugs/Seminars-Slug.jpg width=162 height=390></a></div>"
		, "<div class=adBox><a href=/Magic-Sales-Answer-Ball-pluJG-MSAB.html><img src=/slugs/Sales-Ball-slug.jpg width=162 height=225></a></div>"
		, "<div class=adBox><a href=/Little-Red-Book-of-Sales-Answers-pluLRBSA.html><img src=/slugs/LRBSA-podcasts-slug.jpg width=162 height=300></a></div>"
		, "<div class=adBox><a href=/about/Jeffrey-Gitomer.html><img src=/slugs/Jeffrey-Bio-slug.jpg width=162 height=274></a></div>"
		, "<div class=adBox><a href=/Little-Green-Book-of-Getting-Your-Way-pluLGB.html><img src=/slugs/Green-Book-slug.jpg width=162 height=330></a></div>"
		, "<div class=adBox><a href=/products/DealOfTheWeek.html><img src=/slugs/Deal-of-the-week.jpg width=162 height=252></a></div>"
		, "<div class=adBox><a href=/Jeffrey-Gitomer-s-10-5-Commandments-of-Sales-Success-pluCOMMANDMENTS.html><img src=/slugs/10.5-commandments.jpg width=162 height=433></a></div>"
		, "<div class=adBox><a href=/Jeffrey-Gitomer-s-Boot-Camp-pluBOOTCAMP.html><img src=/slugs/Boot-Camp-slug.jpg width=162 height=367></a></div>"
  ]
  , getTrainOne : function() {
  	document.write(this.slugs[0]);
  }
, getSalesForumAndSalesCaffeine : function() {
document.write(this.slugs[3]);
document.write(this.slugs[4]);
}
  , getSalesCaffeine : function() {
  	document.write(this.slugs[4]);
  }
  , getRandom : function(iCount) {
		var iStartIdx = Math.round(Math.random()*(this.slugs.length - 1));
		for(var i=0; i<Math.min(iCount,this.slugs.length); i++) {
			document.write(this.slugs[(i+iStartIdx)%this.slugs.length]);
		}
   }
   , getIndex : function() {
   		for (x in this.slugs){
			document.write("<h3>Slug #" + x + "</h3>");
			document.write(this.slugs[x]);
		}
   }
   , getAll : function() {
   		for (x in this.slugs){
			document.write(this.slugs[x]);
		}
   }
}