var rand_number = Math.floor(Math.random() * 10) + 1;
if(rand_number > 7)
	rand_number = rand_number - 8;
	
var spin_off_array = new Array(
	['America\'s 50 Best Hotels', '/resorts-hotels/forbes-traveler-400-best-hotels-usa-story.html', 'http://images.forbestraveler.com/media/photos/400/296-peninsula-chicago-d.jpg'],
	['Latin America\'s 20 Best Hotels', '/resorts-hotels/forbes-traveler-400-best-hotels-latin-america-story.html', 'http://images.forbestraveler.com/media/photos/400/131-fourseas-punta-mita-d.jpg'],
	['London\'s 10 Best Hotels', '/resorts-hotels/forbes-traveler-400-best-hotels-london-story.html', 'http://images.forbestraveler.com/media/photos/400/246-mandarin-london-d.jpg'],
	['Asia\'s 50 Best Hotels','/resorts-hotels/forbes-traveler-400-best-hotels-asia-story.html','http://images.forbestraveler.com/media/photos/400/4-amandari-ubud-d.jpg'],
	['The Caribbean\'s 15 Best Hotels','/resorts-hotels/forbes-traveler-400-best-hotels-caribbean-story.html','http://images.forbestraveler.com/media/photos/400/221-ladera-d.jpg'],
	['Africa & Middle East\'s 25 Best Hotels','/resorts-hotels/forbes-traveler-400-best-hotels-africa-middle-east-story.html','http://images.forbestraveler.com/media/photos/400/81-ellerman-house-d.jpg'],
	['Europe\'s 50 Best Hotels','/resorts-hotels/forbes-traveler-400-best-hotels-europe-story.html','http://images.forbestraveler.com/media/photos/inspirations/resorts-hotels/best-euro-01-d.jpg'],
	['Australia & The South Pacific\'s 10 Best Hotels','/resorts-hotels/forbes-traveler-400-best-hotels-australia-and-south-pacific-story.html','http://images.forbestraveler.com/media/photos/400/30-blanket-bay-g.jpg']
);

var current = spin_off_array[rand_number];

document.write('<div id="ft400_spinoffs">');
document.write('<div class="container">');
document.write('<div class="image">');
document.write('<a href="' + current[1] + '">');
document.write('<img src="' + current[2] + '" width="75" height="50" border="0" alt="' + current[0] + '">');
document.write('</a></div>');
document.write('<div class="headline">');
document.write('<h2 class="subheadline">');
document.write('<a href="' + current[1] + '" class="subheadline">');
document.write(current[0]);
document.write('</a>');
document.write('</h2>');
document.write('</div>');