
	var pressConfig = {
		articles: [
			['Organic_Spa_Skin_Care_Guide.jpg', '2009 Skin Care Directory'],
			['Spa-Mag-08.jpg',					'Spa; Healthy Living, Travel &amp; Renewal'],
			['Dermascope-press-sheet.jpg',		'Dermascope - 2008'],
			['Tathaastu-Mag-Press.jpg',			'Tathaastu Magazine'],
			['dirty-shirt-press-020409.jpg',	'The Dirty Shirt - 2008'],
			['naturally-beautiful-2.jpg',		'Natural Home - 2009'],
			['whiteapricot_0808.jpg',			'White Apricot'],
			['yoga_0508.jpg',					'Yoga - 2008'],
			['Shakin_with_Chakras_Sept_23.jpg',	'Christabelle\'s Closet – The Blog'],
			['Natural-Health-Mag-0808.jpg',		'Natural Health - 2008'],
			['ge-greenopia.jpg',				'Greenopia - 2007'],
			['cybelesays_0907.jpg',				'Cybele Says']
		],
		thumbSize: 100,
		popupSize: 700,
		path: '/press/i/makeThumbStart.php?pic=',
		thumbs: [],
		popups: []
	}
	
	pressConfig.articles.each(function(v, k){
		with(this)
		{
			thumbs[k] = path + v[0] + '&w=' + thumbSize + '&sq=Y';
			popups[k] = path + v[0] + '&h=' + popupSize + '&sq=N';
		}
	}, pressConfig);
	
	window.addEvent('domready', function(){
		var pressCarousel = new SimpleImageSlideShow.Carousel($('pressCarousel'), {
			startIndex: 0,
			imgUrls: pressConfig.thumbs,
			nextLink: 'pressNext',
			prevLink: 'pressPrev',
			onSlideClick: function(el, i){
				try
				{
					Mediabox.open(pressConfig.popups[i], pressConfig.articles[i][1] + '::Visit our Press Section for more articles about our products.', pressConfig.popupSize + ' ' + pressConfig.popupSize);
				}
				catch(e)
				{}
			}
		});		
	});
