function load_large_covers()
{
	var largeSources = [
		'BlogTO_2008_09_1.jpg',
		'BlogTO_2008_10_a1.jpg',
		'BlogTO_2008_10_b1.jpg',
		'BlogTO_2008_10_c1.jpg',
		'BlogTO_2008_12_1.jpg',
		'ComputerWorld_2008_01_1.jpg',
		'ComputerWorld_2008_03_1.jpg',
		'ComputerWorld_2008_06_1.jpg',
		'ComputerWorld_2008_07_1.jpg',
		'ComputerWorld_2008_10_1.jpg',
		'ElleCanada.com_2008_04_1.jpg',
		'ElleCanada.com_2008_05_1.jpg',
		'ElleCanada.com_2008_06_1.jpg',
		'ElleCanada.com_2008_07_1.jpg',
		'Elle_2007_07_1.jpg',
		'Elle_2007_10_a1.jpg',
		'Elle_2007_10_b1.jpg',
		'Elle_2008_03_1.jpg',
		'Elle_2008_06_a1.jpg',
		'Elle_2008_06_b1.jpg',
		'Elle_2008_07_1.jpg',
		'Elle_2008_08_a1.jpg',
		'Elle_2008_08_b1.jpg',
		'Elle_2008_10_a1.jpg',
		'Elle_2008_10_b1.jpg',
		'Elle_2008_11_1.jpg',
		'Elle_2008_12_1.jpg',
		'Glow_2008_11_1.jpg',
		'LouLou_2008_10_1.jpg',
		'LouLou_2008_12_1.jpg',
		'NWMeetings_2005_Fall_1.jpg',
		'NWMeetings_2006_Winter_1.jpg',
		'NWMeetings_2007_Spring_1.jpg',
		'NWMeetings_2007_Summer_1.jpg',
		'Seattle_2006_04_1.jpg',
		'Seattle_2006_06_1.jpg',
		'Wish_2008_05_1.jpg'];
	
	for(i=0;i<largeSources.length;i++)
		largeSources[i] = '/img/articles/pages/' + largeSources[i];
			
	var myImages = new Asset.images(largeSources,{});	
}

var cur_article = '';

window.addEvent('domready',function(){
	$$('#thumbs a').addEvent('mouseover',switch_image);
	var tips = new Tips($$('#thumbs a'));
});
			
function switch_image(){
	if(cur_article != this)
	{
		var article_date = $(this.id + '_date').value;
		var article_publication = $(this.id + '_publication').value;
		var article_title = $(this.id + '_title').innerHTML;
		var detail_image_url = $(this.id + '_first_page_image').value;
		
		$('article_detail_img').set('src',detail_image_url);
		$('article_detail_date').set('html',article_date);
		$('article_detail_publication').set('html',article_publication);
		$('article_detail_title').set('html',article_title);
		
		cur_article = this;
	}
}
	
